iPad应用程序崩溃导致重新启动内存问题?

时间:2011-05-20 08:01:42

标签: cocoa-touch memory-management crash ipad reboot

我在iPad上有一个崩溃导致重启的应用程序。此崩溃发生在方法showMap :( Mappe * mappa)之后的某处:

- (void)viewDidLoad {
    moc = [[MapFetcher sharedInstance] managedObjectContext];
    [NSThread detachNewThreadSelector:@selector(fetchMap) toTarget:self withObject:nil];

    [super viewDidLoad];
}

- (void)fetchMap {
    NSAutoreleasePool *threadPool = [[NSAutoreleasePool alloc] init];

    Mappe *mappa;

    mappa = [[[MapFetcher sharedInstance] fetchManagedObjectsForEntity:@"Mappe" 
                                                     withPredicate:[NSPredicate predicateWithFormat:@"Citta == %@", map] 
                                                    withDescriptor:@"Citta"] objectAtIndex:0];
    [self performSelectorOnMainThread:@selector(showImage:) withObject:mappa waitUntilDone:YES];

    [threadPool release];

}

- (void)showImage:(Mappe *)mappa {
    imvMappa = [[UIImageView alloc] initWithFrame:CGRectMake( 0.0, 0.0, 1024.0, 704.0 )];
    [imvMappa setImage:[UIImage imageWithData:[mappa Mappa]]];
    [scrollView addSubview:imvMappa];
    [scrollView setContentSize:CGSizeMake( 1024.0, 704.0 )];
    [scrollView setMinimumZoomScale:0.5];
    [scrollView setMaximumZoomScale:4.0];
    [scrollView setZoomScale:1.0];
    [scrollView setContentMode:(UIViewContentModeScaleAspectFit)];
    [scrollView setClipsToBounds:YES];
    [scrollView setDelegate:self];
    [imvMappa release];
    [loadingImage stopAnimating];
    [waitFor setHidden:YES];
    [scrollView setHidden:NO];
}

scrollView是一个插座,Mappe是一个托管对象,它应该可以正常工作,因为我在应用程序的任何地方都使用它,它不会造成任何麻烦。 我真的卡住了,可能会导致崩溃重启?


编辑:记忆分析

我使用了仪器 - 内存监视器来查看发生了什么,它告诉我在启动时,我的应用程序使用17 MB的内存,而分配说:Live Bytes 883 KB,总共4MB。我有点困惑......当我启动上面的代码时,我看到:2MB的Live Bytes(4个ViewControllers)总共22 MB,而Memory Monitor则说77 MB的实内存。 我应该怎么看才能得到真实的情况报告?

1 个答案:

答案 0 :(得分:0)

您有一个托管对象上下文,并且您将托管对象从一个线程传递到另一个线程然后使用它。这不是没有。相反,每个线程都应该有自己的托管对象上下文,而ObjectsID则在线程之间传递。然后,接收线程从其自己的托管对象上下文中检索托管对象。

更多信息:http://developer.apple.com/library/ios/#documentation/cocoa/conceptual/CoreData/Articles/cdConcurrency.html