iPhone模拟器没有看到我的NSString类别

iPhone模拟器没有看到我的NSString类别,第1张

概述我为NSString提供了以下类别的应用程序: @interface NSDate(ISO8601Parsing)//This method is the one that does all the work. All the others are convenience methods.+ (NSDate *)dateWithString:(NSString *)str strict 我为Nsstring提供了以下类别的应用程序:

@interface NSDate(ISO8601Parsing)//This method is the one that does all the work. All the others are convenIEnce methods.+ (NSDate *)dateWithString:(Nsstring *)str strictly:(BOol)strict getRange:(out NSRange *)outRange;+ (NSDate *)dateWithString:(Nsstring *)str strictly:(BOol)strict;//Strictly: NO.+ (NSDate *)dateWithString:(Nsstring *)str timeSeparator:(unichar)timeSep getRange:(out NSRange *)outRange;+ (NSDate *)dateWithString:(Nsstring *)str timeSeparator:(unichar)timeSep;+ (NSDate *)dateWithString:(Nsstring *)str getRange:(out NSRange *)outRange;+ (NSDate *)dateWithString:(Nsstring *)str;@end

该类别位于最终应用程序中,而不是静态库中.
当我在iPhone上使用该应用程序(带有iOS4的3GS)时,应用程序和测试都没有问题.
当我使用iPhone模拟器时,我没有调用添加的方法.调试我已经看到xcode’跳过’调用并返回null,非常奇怪.
有什么建议吗?
谢谢.
吉恩

解决方法 使用wsdl2objc生成的代码时遇到了同样的问题(参见 issue).我通过重命名一个方法解决了它:

+ (NSDate *)dateWithString:(Nsstring *)str

例如

+ (NSDate *)wsdl2objcdateWithString:(Nsstring *)str;

它看起来像上面的代码和新的私有API之间的冲突,但我不确定.

总结

以上是内存溢出为你收集整理的iPhone模拟器没有看到我的NSString类别全部内容,希望文章能够帮你解决iPhone模拟器没有看到我的NSString类别所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1044119.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存