Develop
2016.05.13 11:17

[ios] UUID 생성 + Key Chain 연동

조회 수 4761 추천 수 0 댓글 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
번호 분류 제목 글쓴이 날짜 조회 수
965 Develop [php] 웹 응용프로그램(engines) 모음 file hooni 2013.04.23 7554
964 Etc [php] 싸이월드 이미지 외부 링크 하기(php) hooni 2013.04.23 16400
963 Develop [php] 심플한 게시판 ㅋㅋ 1 file hooni 2013.04.23 13020
962 Develop [php] 쉘에서 실행할 때 인수(파라미터) 받기.. hooni 2003.04.23 11638
961 Develop [php] 서버 이상 체크 해서 문자보내는 샘플소스.. file hooni 2013.04.23 6710
960 Develop [php] 빔 프로젝터 예약 프로그램.. ㅋㅋ file hooni 2013.04.23 6944
959 Develop [php] 배열 관련 함수 설명 ㅎㅎ hooni 2003.04.23 11776
958 Develop [php] 무조건 다운로드 받도록 header 세팅 file hooni 2013.04.23 7411
957 Develop [php] 몽이가 준 ajax 채팅 소스 ㅋㅋ file hooni 2013.04.23 36202
956 Develop [php] 메모장 - 웅지학원 ([c] mysql 백업프로그램 포함) file hooni 2003.04.23 7020
955 Develop [php] 마시마로 캐릭터 방명록 file hooni 2003.04.23 8265
954 Develop [php] 데이터를 엑셀,워드 형태로 변환할 때 헤더(ms-office) hooni 2013.04.23 7504
953 Develop [php] 니우쪽지다.. 받아라~ ^^ file hooni 2003.04.23 9862
952 Develop [php] 논문 관리 프로그램.. ㅋㅋ file hooni 2013.04.23 7271
951 Develop [php] 날짜 정보 출력 (년,월,일,시,분,초) hooni 2013.04.23 10560
950 Develop [php] 그래프 그리는 프로그램.. file hooni 2013.04.23 8480
Board Pagination Prev 1 ... 12 13 14 15 16 ... 74 Next
/ 74