5

我启用了 NSZombie,当我运行我的应用程序时,我在控制台中收到以下消息:

 *** -[UIViewAnimationState release]: message sent to deallocated instance 0xf96d7e0

这是执行动画的方法

-(void)loadAvatar:(STObject*)st
{   
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];    

    avatar.alpha = 0;
    avatar.frame = avatarRectSmall;

    avatar.image = [ImageCache getMemoryCachedImageAtUrl:st.avatar_url];

    [UIView beginAnimations:nil context:nil];
    [UIView setAnimationDuration:.50];

    avatar.frame = avatarRectNormal;
    [avatar setAlpha:1];
    [UIView commitAnimations];


    [pool release];
    pool = nil;
}

我并不总是崩溃,只是有时。我想知道发布了什么?

4

2 回答 2

15

您那里有一个自动释放池,这提示我问,这是一个单独的线程吗?如果答案是肯定的,那么你不能在那里对 UIView 做任何事情。UIKit 不是线程安全的。您可以执行其他操作,例如计算位置或更新稍后放置在屏幕上的图像,但任何用户界面内容都必须在主线程中进行。

iPhone应用程序编程指南的图形和绘图部分

于 2010-04-28T04:28:20.563 回答
6

您可以对所有功能使用非常简单的安全检查来使用 UI:

-(void)functionModifyingUIelements:(id)object
{
 // fire itself in main thread if it is not in it already
 if (![[NSThread currentThread] isMainThread]) { 

        [self performSelectorOnMainThread:@selector(functionModifyingUIelements:) withObject:object waitUntilDone:NO];
        return;
    }

}
于 2011-05-19T11:51:50.450 回答