PYSearch icon indicating copy to clipboard operation
PYSearch copied to clipboard

导航栏

Open HTOne opened this issue 8 years ago • 1 comments

// 5. Present a navigation controller
UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:searchViewController];
[self presentViewController:nav animated:YES completion:nil];

改成 [self.navigationController presentViewController:searchViewController animated:YES completion:nil]; 报错 reason: 'Application tried to present modally an active controller <UINavigationController: 0x7ffd44832a00>.

HTOne avatar Jun 05 '17 09:06 HTOne

@HTOne 这是你使用问题 UINavigationController 不能modal出一个控制器

ko1o avatar Jun 05 '17 10:06 ko1o