后退按钮关闭ios中的应用程序

时间:2013-07-07 15:30:00

标签: iphone ios

我使用以下代码打开另一个viewcontroller(在myviewcontroller1.m中)

#import "contactvc.h"

contactvc *ii;

// ....

-(IBAction)passothervc:(id)sender
{
   //this code seems working OK.
   ii = [self.storyboard instantiateViewControllerWithIdentifier:@"contactvc"];
   [self presentViewController:ii animated:NO completion:nil];
}

和 下面的代码返回主viewcontroller(在contactvc.m中)

-(IBAction)backToMain:(id)sender
{
   [self.view removeFromSuperview];
}

打开第二个视图,但单击后退按钮时只剩下空黑屏幕。可能应用程序已关闭。必须有一些我不知道或遗失的东西。

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

在contactvc.m中使用以下代码:

[self dismissViewControllerAnimated:YES completion:nil];