Contents

Develop
2016.05.13 11:17

[ios] UUID 생성 + Key Chain 연동

조회 수 10197 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

UUID 쉽게 사용하기 ㅋㅋ


KeychainItemWrapper.h/m 파일은 업로드된 것을 사용해도 되고 아래 URL에 있는 내용을 사용해도 됨.

(어차피 업로드 된 것도 저거 다운 받아서 업로드 한거니.. ㅋㅋ)


# KeychainItemWrapper.h 파일

https://developer.apple.com/library/ios/samplecode/GenericKeychain/Listings/Classes_KeychainItemWrapper_h.html


# KeychainItemWrapper.m 파일

https://developer.apple.com/library/ios/samplecode/GenericKeychain/Listings/Classes_KeychainItemWrapper_m.html


#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;
}



?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
313 Database [mysql] error while loading shared libraries: libmysqlclient.so.10: hooni 2003.04.23 15292
312 System/OS [linux] sendmail 설정/사용 hooni 2003.04.23 15437
311 PPT [ppt] Magic URLs & Hidden Form Fields 에 대해.. ㅋㅋ file hooni 2013.04.23 15442
310 System/OS [linux] 아파치설치/설정(CGI부분) hooni 2003.04.23 15448
309 System/OS [linux] 리눅스 활용 팁^^ hooni 2003.04.23 15544
308 System/OS [linux] 랜카드 2개 설정 & iptables 로 사설 ip.. hooni 2003.04.23 15596
307 Develop [ios] Objective-C에서 SQLite 사용하기.. file hooni 2013.04.23 15619
306 Develop [C] C언어의 조건 연산자(Conditional Operator) hooni 2003.04.23 15742
305 System/OS [sql] 중복데이터 삭제 쿼리 hooni 2013.04.23 15767
304 Develop [api] 인스타그램에서 최신 이미지 가져오기 (Using Instagram API) 20 file hooni 2018.04.05 15815
303 Develop [ios] iOS In App Purchase 코드 부분 샘플 1 hooni 2013.11.20 15831
302 Develop [ios] iOS In App Purchase #2 (코드 구현) file hooni 2013.11.20 15832
Board Pagination Prev 1 ... 68 69 70 71 72 73 74 75 76 77 ... 99 Next
/ 99