如何解码 AlbumData.xml (iPhoto) 中的 GUID
我尝试解析AlbumData.xml并发现奇怪的GUID字符串值,如何将其转换为整数值? 例如:f7hWRm%xSMiYVfEynRpo7g = 4.29497e+09
提前致谢
I tried to parse AlbumData.xml and found strange GUID string value, how to convert it to integer value ?
eg : f7hWRm%xSMiYVfEynRpo7g = 4.29497e+09
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你根本不知道。这是一个 NSString。
建议将扩展名更改为 .plist 并在 Xcode 中打开。然后您可以看到数据类型。
与此相关的是,每当其资料库发生更改时,iTunes 都会发送一条 NSDistributedNotificationCenter 注释。 iPhoto 是否对其AlbumData.xml 执行类似的操作?我不知道是否应该将其作为一个新问题发布,因为它与此问题有些相关。
You simply don't. It's an NSString.
A suggestion is to change the extension to .plist and open in Xcode. You can then see the data types.
Sort of a related thing, iTunes sends a NSDistributedNotificationCenter note whenever its library changes. Does iPhoto do something similar for its AlbumData.xml? I didn't know if I should post this as a new question since it is somewhat relevant to this one.