找不到stringWithContentsofURL方法

时间:2009-09-24 06:53:25

标签: objective-c iphone-sdk-3.0

我正在关注this tutorial,尝试学习一些关于iPhone开发的内容,并且作者使用stringWithContentsofURL方法,但xcode告诉我没有找到stringWithContentsofURL方法。我做了一些搜索,但我还没有找到解决方案。这是显示错误的xcode窗口的屏幕截图: alt text http://mywebprogrammer.com/so/obj-c%20problem%200.png

2 个答案:

答案 0 :(得分:2)

stringWithContentsofURL:是一个类方法,而不是实例方法,因此您必须将其用作

[NSString stringWithContentsOfURL:myURL]

或者如果你想自己分配它,你会这样做:

[[NSString alloc] initWithContentsOfURL:myURL]

但是你必须稍后发布

答案 1 :(得分:1)

它的[NSString stringWithContentsOfURL]。注意:它的首都'O'(在Of中)不是你给出的'o'。它也是一个静态方法,因此不能用于对象。