반응형
iPhone의 기기 이름은 어떻게 얻습니까
를 열면 화면 상단에 Bob의 iPhoneSettings -> General -> About
이라고 표시됩니다. 프로그래밍 방식으로 그 이름을 어떻게 얻습니까?
로부터 UIDevice
클래스 :
예로서: [[UIDevice currentDevice] name];
UIDevice는 iPhone 또는 iPod Touch 장치에 대한 정보를 제공하는 클래스입니다.
UIDevice가 제공하는 일부 정보 (예 : 장치 이름 또는 시스템 버전)는 정적입니다.
출처 : http://servin.com/iphone/uidevice/iPhone-UIDevice.html
공식 문서 : Apple 개발자 문서> UIDevice
클래스 참조
위의 답변 외에도 실제 코드는 다음과 같습니다.
[[UIDevice currentDevice] name];
생각해 내다: 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
Unity에서는 C #을 사용합니다.
SystemInfo.deviceName;
Swift 4+ 버전의 경우 아래 코드를 사용하십시오.
UIDevice.current.name
참고 URL : https://stackoverflow.com/questions/1100127/how-do-you-get-an-iphones-device-name
반응형
'development' 카테고리의 다른 글
Xcode / 시뮬레이터 : 이전 iOS 버전을 실행하는 방법은 무엇입니까? (0) | 2020.07.07 |
---|---|
UITableViewCell의 파란색 강조 표시 색상을 변경하는 방법은 무엇입니까? (0) | 2020.07.07 |
Windows에서 원격 / 대상 리포지토리 URL을 어떻게 변경합니까? (0) | 2020.07.07 |
int를 std :: string으로 변환 (0) | 2020.07.07 |
div 안에 이미지 (img)를 맞추고 종횡비를 유지하려면 어떻게합니까? (0) | 2020.07.07 |