调用Storyboard里的页面使用如下代码:
UIStoryboard *storyBoard=[UIStoryboard storyboardWithName:@"Main" bundle:nil];
BookViewController * bookVC = [storyBoard instantiateViewControllerWithIdentifier:@"bookSb"];
[self.navigationController pushViewController:bookVC animated:YES];
嗯。
网友评论