Heim > Fragen und Antworten > Hauptteil
1. Es gibt 2 VCs in storyBoard, jeweils mit Navigation.
2. AVC-Sprung zur BVC-Methode, Tastenverbindungsmethode
- (IBAction)clickBtnToBvc:(id)sender {
BViewController *vc = [[BViewController alloc]init];
[self.navigationController pushViewController:vc animated:YES];
}
3.BVC schwarzer Bildschirm, was ist der Grund?
世界只因有你2017-05-31 10:35:00
你的B是在storyboard中创建的并绑定控件,所以要从storyboard加载
BViewController * vc = [[UIStoryboard storyboardWithName:@"storyboard" bundle:nil] instantiateViewControllerWithIdentifier:@"IDENTITY"];
[self.navigationController pushViewController:vc animated:YES];