디바이스의 정보 및 OS 정보를 얻어오는 것들을 그냥 정리해 보았습니다.


  1. [NSString stringWithFormat: @"%@: %@", @"phoneUniqueIdentifier", [[UIDevice currentDevice] uniqueIdentifier]];
    결과 : phoneUniqueIdentifier: 12345678

  2. [NSString stringWithFormat: @"%@: %@", @"name", [[UIDevice currentDevice] name]];
    결과 : name: BladeKim's iPhone 4S


  3. [NSString stringWithFormat: @"%@: %@", @"systemName", [[UIDevice currentDevice] systemName]];
    결과 : systemName: iPhone OS


  4. [NSString stringWithFormat: @"%@: %@", @"systemVersion", [[UIDevice currentDevice] systemVersion]];
    결과 : systemVersion: 5.0


  5. [NSString stringWithFormat: @"%@: %@", @"model", [[UIDevice currentDevice] model]];
    결과 : model: iPhone

  6. [NSString stringWithFormat: @"%@: %@", @"localizedModel", [[UIDevice currentDevice] localizedModel]];
    결과 : localizedModel: iPhone


이 게시물을..