OSのバージョンを文字列で返します
解説
OSのバージョンを文字列で返します。
Version 10.x (Build xXxxx)のような文字列が返されます。
返り値
( NSString * )
OS名
引数
フレームワーク
Foundation
クラス
NSProcessInfo
Instance Methods
使用可能
10.2
iOS2.0
参照
例文
#import "MyObject.h" @implementation MyObject - (IBAction)myAction:(id)sender { NSLog([[NSProcessInfo processInfo] operatingSystemName] ); } @end