Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
IPhone-5 で実行されているときに異なるインターフェイスを使用するUIViewControllerクラスがあります。コードで iPhone の種類を取得するにはどうすればよいですか?
UIViewController
次のコードを使用して、iPhone 5 かどうかを確認できます。最初に .m ファイルで次のコードを定義します。
#define IS_IPHONE_5 ( [ [ UIScreen mainScreen ] bounds ].size.height == 568 )
次に、次の条件を使用します
if( IS_IPHONE_5 ) { // Running in iphone 5 } else { // Running in other iphone }