TBXML“找不到类方法tbXMLWithURL”

时间:2012-06-13 07:38:37

标签: iphone ios xcode macos tbxml

我尝试使用TBXML并收到此错误

  

TBXML“类方法+未找到tbXMLWithURL”

我在示例中尝试

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
{

    TBXML * tbxml = [[TBXML tbxmlWithURL:[NSURL URLWithString:@"http://www.w3schools.com/XML/note.xml"]] retain];    


}

2 个答案:

答案 0 :(得分:3)

您的代码和错误中有两个不同的东西:

  

TBXML“类方法+ tbXMLWithURL 未找到”

你的代码中的

  

TBXML * tbxml = [[TBXML tbxmlWithURL :[NSURL   URLWithString:@“http://www.w3schools.com/XML/note.xml”]]保留];

来自TBXML api

  

- (id)initWithURL:(NSURL*)aURL实例化TBXML对象,然后下载并解析给定URL的XML文件。以下代码   实例化TBXML对象并解析note.xml文件   w3schools.com。

我认为你想要的是什么:

TBXML *tbxml = [[TBXML alloc] initWithURL:[NSURL URLWithString:@"http://www.w3schools.com/XML/note.xml"]];

答案 1 :(得分:2)

我对TBXML并不熟悉,但在简要介绍一下该网站时,不会:

TBXML* tbxml = [[TBXML alloc] initWithURL:[NSURL URLWithString:@"http://www.w3schools.com/XML/note.xml"]];

更好吗?