苹果评论中iPad应用程序崩溃 - 无法在模拟器中复制,有崩溃日志

时间:2010-04-01 15:25:01

标签: iphone ipad crash crash-reports

我显然遗漏了一些明显的东西,并且非常感谢一些意见。我曾多次尝试向苹果公司(在这种情况下为iPad)提交申请,但在测试结束时崩溃,但我无法复制我的情况(显然我现在只有该死的模拟器可以使用)。 / p>

崩溃日志如下:

Date/Time:       2010-04-01 05:39:47.226 -0700
OS Version:      iPhone OS 3.2 (7B367)
Report Version:  104

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x00000000, 0x00000000
Crashed Thread:  0

Thread 0 Crashed:
0   libSystem.B.dylib               0x000790a0 __kill + 8
1   libSystem.B.dylib               0x00079090 kill + 4
2   libSystem.B.dylib               0x00079082 raise + 10
3   libSystem.B.dylib               0x0008d20a abort + 50
4   libstdc++.6.dylib               0x00044a1c __gnu_cxx::__verbose_terminate_handler() + 376
5   libobjc.A.dylib                 0x000057c4 _objc_terminate + 104
6   libstdc++.6.dylib               0x00042dee __cxxabiv1::__terminate(void (*)()) + 46
7   libstdc++.6.dylib               0x00042e42 std::terminate() + 10
8   libstdc++.6.dylib               0x00042f12 __cxa_throw + 78
9   libobjc.A.dylib                 0x000046a4 objc_exception_throw + 64
10  CoreFoundation                  0x00090c6e +[NSException raise:format:arguments:] + 74
11  CoreFoundation                  0x00090d38 +[NSException raise:format:] + 28
12  Foundation                      0x00002600 -[NSCFDictionary setObject:forKey:] + 184
13  iPadMosaic                      0x00003282 -[iPadMosaicViewController getAlbumThumbs] (iPadMosaicViewController.m:468)
14  Foundation                      0x000728fe __NSFireDelayedPerform + 314
15  CoreFoundation                  0x00022d1c CFRunLoopRunSpecific + 2092
16  CoreFoundation                  0x000224da CFRunLoopRunInMode + 42
17  GraphicsServices                0x000030d4 GSEventRunModal + 108
18  GraphicsServices                0x00003180 GSEventRun + 56
19  UIKit                           0x000034c2 -[UIApplication _run] + 374
20  UIKit                           0x000019ec UIApplicationMain + 636
21  iPadMosaic                      0x00002234 main (main.m:14)
22  iPadMosaic                      0x00002204 start + 32

我的理解是,我正在以某种方式加入词典。相关的代码行是:

for (NSDictionary *album in self.albumList) {
    // Get image for each album cover

    UIImage *albumCover;

    // Loop through photos to get URL of cover based on photo ID match
    NSString *coverURL = @"";
    for (NSDictionary *photo in self.photoList) {
        if ([[photo objectForKey:@"pid"] isEqualToString:[album objectForKey:@"cover_pid"]]) {
            coverURL = [photo objectForKey:@"src"];
        }
    }


    NSURL *albumCoverURL = [NSURL URLWithString:coverURL];
    NSData *albumCoverData = [NSData dataWithContentsOfURL:albumCoverURL];
    albumCover = [UIImage imageWithData:albumCoverData];    

    if (albumCover == nil || albumCover == NULL) {
        //NSLog(@"No album cover for some reason");
        albumCover = [UIImage imageNamed:@"noImage.png"];
    }

    [[self.albumList objectAtIndex:albumCurrent] setObject:albumCover forKey:@"coverThumb"];
}

这是在存储在数组中的现有字典上运行的循环的一部分。如果检索专辑封面由于某种原因失败,则对象将填充默认图像然后添加。代码的最后一行是崩溃日志中显示的内容。

它在模拟器中运行良好但显然在设备上的测试中崩溃了100%。谁能告诉我这里缺少什么?

2 个答案:

答案 0 :(得分:4)

如果基础没有从3.0到3.2从根本上改变,那么-setObject:forKey:中只有3例引发异常:

  1. 发送到不可变对象的变异方法
  2. 尝试插入nil值
  3. 尝试插入nil键
  4. 显然第三种情况是不可能的,所以你只需要检查:

    1. [self.albumList objectAtIndex:albumCurrent]是否保证是NSMutableDictionary?
    2. 您是否忘记在提交中加入noImage.png

答案 1 :(得分:1)

我遇到了同样的问题!这是一个区分大小写的问题...确保名为noImage.png的文件与实际文件匹配...不是NoImage.png或noimage.png ...检查所有图像!由于1个文件中有1个字母,我错过了应用程序商店的开放!