我在 ios 4.3 上构建了一个应用程序,它运行良好,但是当我在新的 ios 上运行它时,后退按钮不起作用。这是我转到下一个 xib 的代码:
-(IBAction)Selection3Page:(id)sender;{
//show next view
Selection3Page * nvc = [[Selection3Page alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:nvc animated:NO];
[nvc release];
}
这是返回第一个 xib 的代码:
-(IBAction)done:(id)sender{
[self.parentViewController dismissModalViewControllerAnimated:NO];
}
请帮忙!!