このコード スニペットを使用して、デバイスの向きを強制的に変更しています。iOS 9 では動作しませんが、iOS 9 より前では問題なく動作しています。
NSNumber *value = [NSNumber numberWithInt:UIInterfaceOrientationPortrait];
[[UIDevice currentDevice] setValue:value forKey:@"orientation"];
iOS 9 で利用できる変更はありますか?
このコード スニペットを使用して、デバイスの向きを強制的に変更しています。iOS 9 では動作しませんが、iOS 9 より前では問題なく動作しています。
NSNumber *value = [NSNumber numberWithInt:UIInterfaceOrientationPortrait];
[[UIDevice currentDevice] setValue:value forKey:@"orientation"];
iOS 9 で利用できる変更はありますか?