Settings -> General -> About
を開くと、画面上部にBob's iPhoneと表示されます。プログラムでその名前を取得するにはどうすればよいですか?
UIDevice
クラスから:
例として:[[UIDevice currentDevice] name];
UIDeviceは、iPhoneまたはiPod Touchデバイスに関する情報を提供するクラスです。
デバイス名やシステムバージョンなど、UIDeviceによって提供される情報の一部は静的です。
ソース: http://servin.com/iphone/uidevice/iPhone-UIDevice.html
公式ドキュメント:Apple Developer Documentation> UIDevice
Class Reference
上記の答えに加えて、これは実際のコードです:
[[UIDevice currentDevice] name];
迅速:
UIDevice.currentDevice().name
スウィフト3:
UIDevice.current.name
UIDeviceのクラス構造は次のとおりです
+ (UIDevice *)currentDevice;
@property(nonatomic,readonly,strong) NSString *name; // e.g. "My iPhone"
@property(nonatomic,readonly,strong) NSString *model; // e.g. @"iPhone", @"iPod touch"
@property(nonatomic,readonly,strong) NSString *localizedModel; // localized version of model
@property(nonatomic,readonly,strong) NSString *systemName; // e.g. @"iOS"
@property(nonatomic,readonly,strong) NSString *systemVersion;
Xamarinユーザーの場合、これを使用します
UIKit.UIDevice.CurrentDevice.Name
プログラムでiPhoneのデバイス名を取得するには
UIDevice *deviceInfo = [UIDevice currentDevice];
NSLog(@"Device name: %@", deviceInfo.name);
// Device name: my iPod
UnityでC#を使用:
SystemInfo.deviceName;
Swift 4+バージョンの場合以下のコードを使用してください:
UIDevice.current.name