あなたが開いている場合Settings -> General -> About
、それは言うよ、ボブのiPhoneを画面の上部に。プログラムでその名前をどのように取得しますか?
あなたが開いている場合Settings -> General -> About
、それは言うよ、ボブのiPhoneを画面の上部に。プログラムでその名前をどのように取得しますか?
回答:
UIDevice
クラスから:
例として: [[UIDevice currentDevice] name];
UIDeviceは、iPhoneまたはiPod Touchデバイスに関する情報を提供するクラスです。
デバイス名やシステムバージョンなど、UIDeviceによって提供される情報の一部は静的です。
ソース:http : //servin.com/iphone/uidevice/iPhone-UIDevice.html
公式ドキュメント: Apple Developer Documentation> UIDevice
Class Reference
覚えておいてください: import UIKit
迅速:
UIDevice.currentDevice().name
スイフト3、4、5:
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