我们刚刚在 iOS 上升级到 PhoneGap/Cordova 2.0,但我们在 JSONKit.m 中看到了多个警告。
有两类警告:(1)“格式字符串问题”和(2)“语义问题”。
这是“格式字符串问题”的示例:
/Users/macuser/Documents/CordovaLib/Classes/JSON/JSONKit.m:745:180: Format specifies type 'unsigned long' but the argument has type 'NSUInteger' (aka 'unsigned int')
这是“语义问题”的示例:
/Users/macuser/Documents/CordovaLib/Classes/JSON/JSONKit.m:2600:11: Direct access to objective-c's isa is deprecated in favor of object_setClass() and object_getClass()
我们在 Lion,Xcode 4.4。
任何线索为什么现在会发生这种警告而以前没有?
谢谢!