我该怎么做:
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;
}
然后我就黑屏了。如果我使用上面 stackoverflow 问题中的代码,我会收到错误消息。
- (IBAction)loginAction:(UIButton *)sender {
UIViewController* tabViewController = [[UIViewController alloc] initWithNibName:@"tabViewController" bundle:[NSBundle mainBundle]];
[self.view addSubview:tabViewController.view];
}
先感谢您!