Objective c 에서 GUID 가 져 오기

354 단어 objective c
+ (NSString*) stringWithUUID  {
   CFUUIDRefuuidObj = CFUUIDCreate(nil);//create a new UUID
   
   //get the string representation of the UUID
   NSString*uuidString = (NSString*)CFUUIDCreateString(nil, uuidObj);
   CFRelease(uuidObj);
   return [uuidString autorelease];
}


좋은 웹페이지 즐겨찾기