Я включил 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;
}
У меня не всегда бывает сбой, только иногда. Мне интересно, что выпускают?