Closed RomanPodymov closed 4 months ago
Hello @freak4pc Any updates?
+1
Would be cool to add: https://developer.apple.com/documentation/uikit/uicollectionviewdelegate/1618081-collectionview
Hello @markst First of all we need to merge this pull request.
FYI, this PR has not been properly tested and is not working on tvOS as expected.
I found that UIButton.tapPublisher
is not functioning.
Probably more issues will arise.
I found that
UIButton.tapPublisher
is not functioning.
You shouldn't be using "UIControlEvents.TouchUpInside" on tvOS, since that doesn't do what you might expect: you probably want to use "UIControlEvents.PrimaryActionTriggered" instead.
TouchUpInside is triggered by actual touches, which isn't really what you wanted here: if you want the Select button press on the remote to trigger your button, you should use PrimaryActionTriggered.
Hello. Thank you for CombineCocoa. CombineCocoa now supports tvOS.