我需要在我的iPad應用程序中使用動畫。當我使用動畫時,內存在增加並且獲得異常。當我啓動我的應用程序時,內存大小爲10 MB,一旦動畫開始它將內存大小增加到發射空間的兩倍(它是30 MB)。我測試的分配和泄漏一切都很完美,但我仍然有這個問題。我不知道它爲什麼會發生。我的動畫代碼如下,請幫助我。動畫需要額外的內存
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.5];
if ([currentView superview])
{
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:mainView cache:YES];
[currentView removeFromSuperview];
[mainView addSubview:nextView];
}
[UIView commitAnimations];
在此先感謝, Sekhar Bethalam。