0
我有一個應用程序,只支持肖像模式,但我有一個NowPlayingViewController與youtubeView。 我想只有這youtubeView支持橫向模式(當它的全屏) 我發現這個(在appdelegate.m)如何啓用只在一個uiviewcontroller旋轉設備
- (NSUInteger) application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window
{
if ([[self.window.subviews.lastObject class].description isEqualToString:@"<string>"]) {
return UIInterfaceOrientationMaskAllButUpsideDown;
}
else {
return UIInterfaceOrientationMaskPortrait;
}
}
,但我不知道怎麼描述設置爲我youtubeWiew與此字符串。 任何人都有解決方案?