我正在编写一个iPhone应用程序,我从主视图开始,当我点击一个按钮时,它会使用此代码切换到我的第二个视图...
- (IBAction)addNewCourse
{
AddCourses *addCourseController = [[AddCourses alloc] initWithNibName:@"AddCourses" bundle:nil];
[self presentModalViewController:addCourseController animated:YES];
}
现在我在切换回原始视图时遇到问题。我用这段代码......
- (IBAction) back
{
[self.parentViewController dismissViewControllerAnimated:YES completion:nil];
}
但它似乎不起作用。任何帮助将不胜感激。感谢
答案 0 :(得分:2)
试试这段代码:
[self dismissViewControllerAnimated:YES completion:nil];