적어도 지금까지 tvOS 10.2. AppleTv에서는 가로 방향 만 지원합니다.
당신이 볼 수 있듯이
는 UIDeviceOrientation의 정의는 __TVOS_PROHIBITED
typedef NS_ENUM(NSInteger, UIDeviceOrientation) {
UIDeviceOrientationUnknown,
UIDeviceOrientationPortrait, // Device oriented vertically, home button on the bottom
UIDeviceOrientationPortraitUpsideDown, // Device oriented vertically, home button on the top
UIDeviceOrientationLandscapeLeft, // Device oriented horizontally, home button on the right
UIDeviceOrientationLandscapeRight, // Device oriented horizontally, home button on the left
UIDeviceOrientationFaceUp, // Device oriented flat, face up
UIDeviceOrientationFaceDown // Device oriented flat, face down
} __TVOS_PROHIBITED;
정말 답이 거기에있다 희망으로 판정을 받았습니다. 전체 앱을 옆으로 지어 쓰고 싶지 않다 ... –