- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我们目前在移动应用程序中使用 PhoneGap,我知道他们有 device.udid (http://docs.phonegap.com/en/1.0.0/phonegap_device_device.md.html#device.uuid)获取唯一标识符。为了确保我们当前的应用程序能够在 iOS 6 发布时正常运行,面向 future 的最佳方法是什么?我们是否应该开始使用其他一些解决方案(MAC 地址等)来确保 future 的兼容性?
最佳答案
查看 CFUUIDCreate
的文档
我使用下面的方法创建一个 UUID 并在应用程序第一次启动时将其保存到用户首选项中:
- (NSString *)getUUID
{
NSString *UUID = [[NSUserDefaults standardUserDefaults] objectForKey:@"uniqueID"];
if (!UUID)
{
CFUUIDRef theUUID = CFUUIDCreate(NULL);
CFStringRef string = CFUUIDCreateString(NULL, theUUID);
CFRelease(theUUID);
UUID = [(__bridge NSString*)string stringByReplacingOccurrencesOfString:@"-"withString:@""];
[[NSUserDefaults standardUserDefaults] setValue:UUID forKey:@"uniqueID"];
}
return UUID;
}
关于iphone - 我们如何才能防止 iOS 6's upcoming UDID/UUID removal if we' 重新使用 PhoneGap?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9457731/
我正在使用此处提供的多合一事件日历:http://wordpress.org/extend/plugins/all-in-one-event-calendar/ 我正在尝试使用 WP_Query()
Stripe 文档对此含糊不清: https://stripe.com/docs/billing/webhooks A few days prior to renewal, your site rec
Stripe 文档对此含糊不清: https://stripe.com/docs/billing/webhooks A few days prior to renewal, your site rec
我想获得最近的星期一的日期(即不是过去的)。 因此,如果今天是星期二(2009 年 12 月 1 日),我想获取星期一(2009 年 12 月 7 日)的日期。 我如何用 Zend_Date 做到这一
我有一个表“users”,其中有一列“date_of_birth”(DATE 格式,包含日、月、年)。在前端,我需要列出 5 个即将到来的生日。 花了很长时间试图找出逻辑..也浏览了谷歌中所有可能的文
我有一个数据框: col1 col2 a 0 b 1 c 1 d 0 c 1 d 0 在 'col2' 上,我只想保留顶部的第一个 1 并
我们目前在移动应用程序中使用 PhoneGap,我知道他们有 device.udid (http://docs.phonegap.com/en/1.0.0/phonegap_device_device
我有一些旧的 Azure Powershell 脚本,我正在将它们拿出来再次使用。它们似乎按照我内存中的方式工作,除了我收到这些警告: $VirtualMachine = Add-AzureRmVMN
我是一名优秀的程序员,十分优秀!