1 + (NSString *)uuidString 2 { 3 CFUUIDRef uuid_ref = CFUUIDCreate(NULL); 4 CFStringRef uuid_string_ref= CFUUIDCreateString(NULL, uuid_ref); 5 NSString *uuid = [NSString stringWithString:(__bridge NSString *)uuid_string_ref]; 6 CFRelease(uuid_ref); 7 CFRelease(uuid_string_ref); 8 return [uuid lowercaseString]; 9 }
相关文章
- 06-12python中时间对象生成及时间格式的转换
- 06-12python中的迭代器 生成器 装饰器
- 06-12请问在 .NET Core 中如何让 Entity Framework Core 在日志中记录由 LINQ 生成的SQL语句?
- 06-12robotframework中的用evaluate关键字进行运算(随机数+转换+运算)
- 06-12leetcode 215. 数组中的第K个最大元素 实现最小堆 随机partition
- 06-12数据结构-关于随机数0-1生成的笔记
- 06-12ios中多线程GCD NSOperation NSThread 相关的操作解析
- 06-12iOS---------开发中 weak和assign的区别
- 06-12随机数的生成 (用于数据测试)
- 06-12JPA中的主键生成策略