Development
글수 89
디바이스의 정보 및 OS 정보를 얻어오는 것들을 그냥 정리해 보았습니다.
- [NSString stringWithFormat: @"%@: %@", @"phoneUniqueIdentifier", [[UIDevice currentDevice] uniqueIdentifier]];결과 : phoneUniqueIdentifier: 12345678
- [NSString stringWithFormat: @"%@: %@", @"name", [[UIDevice currentDevice] name]];결과 : name: BladeKim's iPhone 4S
- [NSString stringWithFormat: @"%@: %@", @"systemName", [[UIDevice currentDevice] systemName]];결과 : systemName: iPhone OS
- [NSString stringWithFormat: @"%@: %@", @"systemVersion", [[UIDevice currentDevice] systemVersion]];결과 : systemVersion: 5.0
- [NSString stringWithFormat: @"%@: %@", @"model", [[UIDevice currentDevice] model]];결과 : model: iPhone
- [NSString stringWithFormat: @"%@: %@", @"localizedModel", [[UIDevice currentDevice] localizedModel]];결과 : localizedModel: iPhone
