Develop
2016.05.13 11:17
[ios] UUID 생성 + Key Chain 연동
Views 10177 Comment 0
Attachment '2' |
---|
UUID 쉽게 사용하기 ㅋㅋ
KeychainItemWrapper.h/m 파일은 업로드된 것을 사용해도 되고 아래 URL에 있는 내용을 사용해도 됨.
(어차피 업로드 된 것도 저거 다운 받아서 업로드 한거니.. ㅋㅋ)
# KeychainItemWrapper.h 파일
# KeychainItemWrapper.m 파일
#import "KeychainItemWrapper.h" - (NSString *)getDeviceUUID { KeychainItemWrapper *keychainItemWrapper = [[KeychainItemWrapper alloc] initWithIdentifier:@"UUID-Identifier" accessGroup:nil]; NSString *uuidString = [keychainItemWrapper objectForKey:(__bridge id)(kSecAttrAccount)]; if (uuidString == nil || [uuidString length] == 0) { // if there is not UUID in keychain, make UUID and save it. CFUUIDRef uuidRef = CFUUIDCreate(NULL); CFStringRef uuidStringRef = CFUUIDCreateString(NULL, uuidRef); CFRelease(uuidRef); uuidString = [NSString stringWithString:(__bridge NSString *)uuidStringRef]; CFRelease(uuidStringRef); // save UUID in keychain [keychainItemWrapper setObject:uuidString forKey:(__bridge id)(kSecAttrAccount)]; } return uuidString; }
TAG •
No. | Category | Subject | Author | Date | Views |
---|---|---|---|---|---|
351 | Develop | [ios] UI컨트롤러 샘플코드 | hooni | 2013.08.08 | 16489 |
350 | Develop | [ios] URL Scheme 이용하여 앱 설치 확인 | hooni | 2014.03.10 | 5281 |
349 | Develop | [ios] URL 랜딩 속도(OpenURL 10초 정지되는) 이슈 | hooni | 2015.02.09 | 1756 |
348 | Develop | [ios] URL 파라미터 파싱~ | hooni | 2014.05.12 | 4562 |
347 | Develop |
[ios] Using protobuf(Protocol Buffers) on iPhone (iOS)
![]() |
hooni | 2014.03.20 | 7863 |
» | Develop |
[ios] UUID 생성 + Key Chain 연동
![]() |
hooni | 2016.05.13 | 10177 |
345 | Develop | [ios] ViewController Push할 때 애니메이션 효과 | hooni | 2015.10.23 | 2112 |
344 | Develop |
[ios] VIN Scanner (VIN barcode) 스캐너
![]() |
hooni | 2017.09.16 | 2262 |
343 | Develop | [ios] WWDC 2015 샘플 소스 코드 통합파일 | hooni | 2015.07.20 | 1831 |
342 | Develop | [ios] Xcode cannot run using the selected device | hooni | 2014.08.14 | 3861 |
341 | Develop | [iOS] Xcode 불필요한 캐시 삭제하기 | hooni | 2021.10.12 | 4399 |
340 | Develop |
[ios] Xcode를 사용해서 Static Library 만들기 (시뮬레이터 + 디바이스)
![]() |
hooni | 2015.01.03 | 5049 |