读取本地webarchive文件-occasionally-返回null WebResourceData

时间:2013-04-03 18:56:51

标签: iphone ios plist webarchive

阿罗哈,

我在iOS 6.1.3中遇到了一个读取webarchive文件的问题 - 偶尔 - WebResourceData返回null。

这些是存储在bundle中的已知好文件(在TextEdit中创建),通常读得很好。只是每隔一段时间,他们就没有。

在下面显示的简单测试中,我一遍又一遍地阅读3个不同的文件,直到发现错误为止。对于iOS 6.1.3,每次运行测试时都会遇到1到200次迭代之间的错误。我在各种设备和模拟器上运行它具有相同的结果。

    // trying to find out why reading webarchives occasionally
    // returns with empty WebResourceData from known good files.
    //
    - (BOOL) testMe {

        NSMutableDictionary *plist = [[NSMutableDictionary alloc] initWithCapacity:100] ;

        int iteration = 1;

        BOOL  ok = TRUE;

        // keep going until we have an error
        while (ok) {

            NSArray *fileNames = @[@"file1",
                                   @"file2",
                                   @"file3" ];

            // LOOP through the webArchives...
            //
            for (NSString *webarchiveName in fileNames) {

                // get the webarchive template
                //
                NSURL *fileURL = [[NSBundle mainBundle] URLForResource:webarchiveName withExtension:@"webarchive"];
                //
                NSData *plistData = [NSData dataWithContentsOfURL:fileURL];
                NSString *error;
                NSPropertyListFormat format;
                //
                plist = (NSMutableDictionary *)[NSPropertyListSerialization propertyListFromData:plistData
                                                                              mutabilityOption:NSPropertyListMutableContainersAndLeaves
                                                                                          format:&format
                                                                                errorDescription:&error];
                // check to see if it loaded
                //
                //
                if(!plist){

                    NSLog(@"ERROR: did not load %@", webarchiveName);

                }else{


                    NSData *foundWebResourceData = [[plist objectForKey:@"WebMainResource"] objectForKey:@"WebResourceData"];
                    NSString *foundHTML = [NSString stringWithUTF8String:[foundWebResourceData bytes]];

                    if (foundHTML == NULL) {
                        NSLog(@"      %@ descr = %@", webarchiveName, foundHTML);

                        [errorOutlet setText:[NSString stringWithFormat:@"%@ returned with no content (null) in WebResourceData", webarchiveName]];

                        ok = FALSE;
                    }
                } //---- end of if plist exists

            }  // loop through all 3 files


            [countOutlet setText:[NSString stringWithFormat:@"%d", iteration]];
            ++ iteration;

        }  // keep looping until error

        return ok;

    }  // end of testMe 

错误显示在以下两行中:

    NSData *foundWebResourceData = [[plist objectForKey:@"WebMainResource"] objectForKey:@"WebResourceData"];
    NSString *foundHTML = [NSString stringWithUTF8String:[foundWebResourceData bytes]];

但它并不一致。我通过创建一个新的xcode项目来隔离代码,其中这是唯一的活动,而不是显示迭代计数和重新测试按钮。文件总是加载,并且始终具有带WebResourceData密钥的WebMainResource。

一个可能的线索是,如果我将代码插入到ViewDidLoad中,它会运行更多次迭代,但仍会找到null。从按钮动作调用[self testMe]会更快地发生错误...不确定原因。

我有点不知所措,希望这不是iOS的错误,而是基本的我只是缺少的东西。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

您可以尝试使用专为读取NSData而设计的NSString初始化程序:

NSString *foundHTML = [[NSString alloc] initWithData:foundWebResourceData encoding:NSUTF8StringEncoding];