xcode – 在iOS上升级到PhoneGap 2.0后,JSONKit.m中出现多个“格式字符串问题”警告

前端之家收集整理的这篇文章主要介绍了xcode – 在iOS上升级到PhoneGap 2.0后,JSONKit.m中出现多个“格式字符串问题”警告前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们刚刚在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上.

有什么线索为什么现在发生这种警告,而他们之前没有?

谢谢!

解决方法

来自Google网上论坛的用户

Xcode 4.4使用更严格的更新编译器.这是无害的
(暂时),但这个问题已修复:https://issues.apache.org/jira/browse/CB-1164

猜你在找的Xcode相关文章