When focus changes to a UITextView in any of the media apps on Apple TV - App Store, Movies, TV Shows etc. - it highlights with an effect that looks like this:
It pops out, a shadow appears, and rolling your thumb across the trackpad gives it that glossy 3D effect. It's a lot like a focused UIButton, or a UIImageView contained as a subview of a focused view, like a UICollectionViewCell.
With UIButton, if it's initialised with a type of UIButtonType.System, it gains the focused appearance when focused, without any work.
With a UIImageView within a focused view can set adjustsImageWhenAncestorFocused
, and upon the view becoming focused, it gains the focused appearance.
But neither UITextView, nor UILabel, are automatically styled upon being selected, or have a property to adjust appearance when ancestor is focused.
So I'm wondering how I'm to do this. Does Apple provide any way to display a focused textview like this?