I am trying to show a popup when a UICollectionView cell, but I had no luck ...
On iOS, I usually used modalPresentationStyle as follows:
popoverContent.modalPresentationStyle = .Popover
but in tvOS this is not available.
I think a popup is possible with
UIPopoverController
but he gives me a warning that it is deprecated in tvOS 9.0. Is this something I can ignore and just use?
I am wondering if anyone has an idea how to make popup work in tvOS?
ps
Does anyone know if there is a way for tvOS application to read data from external equipment via Apple TV USB?
source
share