Maison > Questions et réponses > le corps du texte
1. Il y a 2 VC dans storyBoard, chacun avec navigation.
2. Saut AVC vers la méthode BVC, méthode de connexion par bouton
- (IBAction)clickBtnToBvc:(id)sender {
BViewController *vc = [[BViewController alloc]init];
[self.navigationController pushViewController:vc animated:YES];
}
3.Écran noir BVC, quelle en est la raison ?
世界只因有你2017-05-31 10:35:00
Votre B est créé dans le storyboard et lié au contrôle, il doit donc être chargé depuis le storyboard
BViewController * vc = [[UIStoryboard storyboardWithName:@"storyboard" bundle:nil] instantiateViewControllerWithIdentifier:@"IDENTITY"];
[self.navigationController pushViewController:vc animated:YES];
PHP中文网2017-05-31 10:35:00
Essayez de définir une couleur d'arrière-plan pour la vue de BViewController