본문 바로가기
Programming/Objective-C

Cocos2D에서 uniqueldentifier is deprecated 해결하기

by 황금표정 2012. 6. 6.

CLScoreServerRequest.m 에서


NSString *device = @"";

if( flags & kQueryFlagByDevice )

device = [[UIDevice currentDevice] uniqueldentifier];


부분을


CFUUIDRef uuid = CFUUIDCreate(kCFAllocatorDefault);

NSString *device = (NSString*)CFUUIDCreateString(kCFAllocatorDefault, uuid);


로 수정


CLScoreServerPost.m 에서


[self addValue:[[UIDevice currentDevice] uniqueIdentifier] key:@"cc_device_id"];


부분을


CFUUIDRef uuid = CFUUIDCreate(kCFAllocatorDefault);

NSString* device = (NSString*)CFUUIDCreateString(kCFAllocatorDefault, uuid);

[self addValue:device key:@"cc_device_id"];


로 수정



원문: http://oddersoft.com/20

의 내용 참고

반응형