TBXML没有更新文件

时间:2012-09-20 10:36:20

标签: ios xml updates tbxml

我使用TBXML从网上下载.xml文件。我正确地解析了文件,并且根据需要得到了我想要的所有数据。

我的问题是我更新了服务器上的文件,但它没有在应用程序中更新。它仅在我删除并重新安装应用程序时更新了文件。

是否有某种缓存或什么?

这就是我订购fetch的方式:

-(void)getXML {

    NSLog(@"Updating ATC data !");

    // Create a success block to be called when the async request completes
    TBXMLSuccessBlock successBlock = ^(TBXML *tbxmlDocument) {

        // If TBXML found a root node, process element and iterate all children
        if (tbxmlDocument.rootXMLElement)
            [self traverseElement:tbxmlDocument.rootXMLElement];
    };

    // Create a failure block that gets called if something goes wrong
    TBXMLFailureBlock failureBlock = ^(TBXML *tbxmlDocument, NSError * error) {
        NSLog(@"Error! %@ %@", [error localizedDescription], [error userInfo]);
    };

    // Initialize TBXML with the URL of an XML doc. TBXML asynchronously loads and parses the file.
    TBXML *tbxml = [[TBXML alloc] initWithURL: [NSURL URLWithString:@"http://www.mysite.com/myFile.xml"] 
                                      success: successBlock 
                                      failure: failureBlock];

}

这就是我在后台调用它的方式:

[self performSelectorInBackground:@selector(getXML) withObject:Nil];

在后台调用它可能没用,因为TBXML异步工作,如果有人可以确认我会把它拿走。另外,我不认为我的traverseElement:方法的代码在这里很有用,因为文件被正确解析了。

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

似乎问题消失了..它工作正常,但我不知道为什么它首先不起作用。