+ (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];
}



相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-14
  • 2021-07-01
  • 2021-05-15
  • 2021-10-27
猜你喜欢
  • 2021-06-09
  • 2022-12-23
  • 2022-12-23
  • 2022-03-08
  • 2022-12-23
  • 2021-10-14
  • 2022-12-23
相关资源
相似解决方案