是否可以在 AVPlayerViewController 中更改自定义信息视图控制器的索引?
一个视图控制器,它提供客户端特定的内容和控件以及系统提供的信息和设置面板。SDK
tvOS 11.0+
声明斯威夫特
var customInfoViewController: UIViewController? { 设置 }
声明 Objective-C
@property(nonatomic) UIViewController *customInfoViewController;
让我们看看AVPlayerViewController.h的内部
...
/*!
@property customInfoViewController
@abstract A view controller to be displayed alongside system-provided info and settings panels.
@discussion Use this property to provide client-specific content and controls in an additional info view. Implement -preferredContentSize to provide the desired view size.
*/
@property (nonatomic, nullable) UIViewController *customInfoViewController API_AVAILABLE(tvos(11.0));
...
默认情况下,它是信息面板中的第二项(在信息选项卡之后)。我想在第一个索引处显示。