关闭设置时,我的应用程序崩溃
即使使用标准动画(UIModalTransitionStyleCoverVertical
)按钮,“完成”也不起作用。
可能有什么不对?
-EDIT - 显然我在描述问题时并不十分准确:XCode没有收到崩溃通知。该应用程序只是关闭。因此,会议期间取得的成就将失去。
- (IBAction)BarButtonPageCurlAction:(id)sender {
IASKAppSettingsViewController *SettingsViewController;
SettingsViewController = [[[IASKAppSettingsViewController alloc] initWithNibName:@"IASKAppSettingsView" bundle:nil] autorelease];
SettingsViewController.delegate = self;
//SettingsViewController.showDoneButton = NO;
//SettingsViewController.showCreditsFooter = NO;
SettingsViewController.modalTransitionStyle = UIModalTransitionStylePartialCurl;
UINavigationController *NavController = [[[UINavigationController alloc] initWithRootViewController:SettingsViewController] autorelease];
//[NavController setNavigationBarHidden:YES];
[self presentModalViewController:NavController animated:YES];}
我的班级文件:
答案 0 :(得分:1)
您没有实施适当的委托方法。查看Inappsettings的文档,有一些方法用于解除设置视图。