これを行う方法:
If i press the "Einloggen" (Login) button
{
Show TabBarController with FirstViewController
}
(私はこれが初めてで、それについて何かを見つけようとしました... https://developer.apple.com/library/ios/featuredarticles/ViewControllerPGforiPhoneOS/Introduction/Introduction.html ボタンが押されたときに別のビューを開くiOS )
私が持っているスクリプト/関数は次のとおりです。
- (IBAction)loginAction:(UIButton *)sender {
self.view = self.tabBarController.view;
}
その後、黒い画面になりました。上記のスタックオーバーフローの質問のコードを使用すると、エラーが発生します。
- (IBAction)loginAction:(UIButton *)sender {
UIViewController* tabViewController = [[UIViewController alloc] initWithNibName:@"tabViewController" bundle:[NSBundle mainBundle]];
[self.view addSubview:tabViewController.view];
}
前もって感謝します!