我已經包含了<QuartzCore/QuartzCore.h>
框架。石英動畫錯誤
上IBAction爲我有這樣的:
- (IBAction)searchOptions:(id)sender {
FilterViewController *ctrl = [[FilterViewController alloc] initWithNibName:@"FilterViewController" bundle:nil];
[UIView transitionFromView:self.view toView:ctrl.view duration:1 options:UIViewAnimationOptionTransitionCurlUp completion:nil];
[self.navigationController pushViewController:ctrl animated:NO];
}
當我點擊按鈕,頁面繚繞如你所願:
當我點擊下一步按鈕(這應該捲曲頁後退下)我得到這個錯誤:
主題1:EXC_BAD_ACCESS(代碼= 2,地址= 0x8中)
我覺得問題在於上述操作(而不是解除操作)。
出了什麼問題?
編輯:經過一個小時的閱讀 - 它可能是一個內存問題?
你有#import? –
我呢,我現在有這部分工作 - 給我2秒將更新問題 –
更新我的問題 –