本文主要是介绍iphone中生成随即GUID串的代码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
iphone中生成随即GUID串的代码
+ (NSString*) stringWithUUID {CFUUIDRef uuidObj = CFUUIDCreate(nil);//create a new UUID//get the string representation of the UUIDNSString *uuidString = (NSString*)CFUUIDCreateString(nil, uuidObj);CFRelease(uuidObj);return [uuidString autorelease];
}
这篇关于iphone中生成随即GUID串的代码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!