UUID 와 UDID
2016. 7. 5. 15:15ㆍProgramming/Swift
반응형
앱의 고유번호를 확인 할 때 UDID를 사용한다. 그러나 애플에서는 UDID를 언제부터인가 사용을 제안하고 있다.
UDID를 대체하는 것이 UUID 이다.
swift에서 UUID 값을 가져오는 방법은 아래와 같다.
let UUID = getUUID() print(UUID) func getUUID() -> NSString { let UID = CFUUIDCreate(kCFAllocatorDefault) let UID2 = CFUUIDCreateString(kCFAllocatorDefault, UID); let GETID = UID2 as NSString
return GETID.lowercaseString } |
UDID는 아래 URL에 설명이 있다.
http://ibeta.kr/?mid=FAQ&category=579&document_srl=176&sort_index=readed_count&order_type=desc
UDID는 itunes에서 확인이 가능하다. 아래 그림의 모델 식별자를 클릭하면 일련번호, UDID, ECID 도 확인 가능하다.
마우르 우클릭(?) 하면 복사도 가능 함.
반응형
'Programming > Swift' 카테고리의 다른 글
[ERROR] fatal error: unexpectedly found nil while unwrapping an Optional value (0) | 2016.07.06 |
---|---|
tableView prototype cell 부분을 보여주지 않으려면 (0) | 2016.07.06 |
AppIcon 검은색 테두리 (0) | 2016.06.22 |
viewWithTag (0) | 2016.06.21 |
process launch failed: failed to get the task for process [1383] (0) | 2016.05.24 |