Hi,
I'm really enjoying programming w/ tvOS so far but I'm having trouble giving correct focus to an AVPlayerViewController that I set up as a child view controller via a container view in IB.
Right now the focus is sort of working. I can move it onto the AVPlayerVC...I can tell it's somewhere there because the Play/Pause button works with the video. However, the controls never appear and I can't seem to figure out which view is actually in focus so I can adjust my interface accordingly. When I check the mainScreen for it's focusedView, I get this response:
<_AVFocusContainerView 0x7fd57b4803a0; frame = {{0, 0}, {1220, 905}}; focused = YES; not full screen (playback is non-interactive); parent focus environment is NOT AVPlayerViewController: <AVNowPlayingPlaybackControlsViewController: 0x7fd57c049400>>
I have tried subclassing AVPlayerViewController to override the preferredFocusView using the below code, but that doesn't seem to have any effect.
override var preferredFocusedView: UIView? { return view }
Any help would be greatly appreciated!