タグ付けされた質問 「uiinterfaceorientation」

18
[UIScreen mainScreen] .bounds.sizeはiOS8で向きに依存しますか?
iOS 7とiOS 8の両方で次のコードを実行しました。 UIInterfaceOrientation orientation = [[UIApplication sharedApplication] statusBarOrientation]; BOOL landscape = (orientation == UIInterfaceOrientationLandscapeLeft || orientation == UIInterfaceOrientationLandscapeRight); NSLog(@"Currently landscape: %@, width: %.2f, height: %.2f", (landscape ? @"Yes" : @"No"), [[UIScreen mainScreen] bounds].size.width, [[UIScreen mainScreen] bounds].size.height); 以下は、iOS 8からの結果です。 Currently landscape: No, width: 320.00, height: 568.00 Currently landscape: Yes, width: …

4
iOS 8で向きの変更を処理する「正しい」方法は何ですか?
iOS 8で縦向きと横向きのインターフェースの向きを操作する「正しい」または「最良の」アプローチを誰かに教えてもらえますか?私がその目的で使用したいすべての機能はiOS 8で非推奨になっているようで、私の研究では明確でエレガントな代替手段が見つかりませんでした。幅と高さを見て、ポートレートモードかランドスケープモードかを自分で判断する必要があるのでしょうか。 たとえば、私のビューコントローラーでは、次の擬似コードをどのように実装すればよいですか? if we are rotating from portrait to landscape then do portrait things else if we are rotating from landscape to portrait then do landscape things
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.