我正在尝试将 Apple 的简单 Collection View 示例集成到一个项目中。
我有这个代码:
-(IBAction)buttonTapped:(id)sender {
NSLog(@"%s", __FUNCTION__);
ImageViewController *ivc = [[UIStoryboard storyboardWithName:@"MainStoryboard" bundle:NULL] instantiateViewControllerWithIdentifier:@"images"];
NSLog(@"1");
[self.navigationController pushViewController:ivc animated:YES];
NSLog(@"2");
}
我看到了日志语句,但没有推送任何视图。我已将“图像”设置为情节提要 ID。这是我第一次使用 Storyboard,所以如果我做错了什么,我将不胜感激。
谢谢