gpt4 book ai didi

ios - 如何在没有导航 Controller 的情况下导航到另一个 Controller ?

转载 作者:行者123 更新时间:2023-11-29 11:23:39 25 4
gpt4 key购买 nike

我在 ViewController 的 ViewDidLoad 中有以下代码

- (void)viewDidLoad {
[super viewDidLoad];
UIImageView* view = [[UIImageView alloc] initWithImage: [UIImage imageNamed: @"logo.png"]];
view.frame = CGRectMake(300, 200, 200, 350);
[self.view addSubview:view];


UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(300, 800, 200, 50)];
label.textColor = [UIColor blackColor];
[label setBackgroundColor:[UIColor clearColor]];
[label setFont:[UIFont systemFontOfSize:30]];
[label setText: @"Tap to Enter"];

[self.view addSubview:label];
[label release]; }

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
NSLog(@"Hello, You Tapped !"); }

现在我想点击并切换到另一个 Controller ,我想要他们的 UITabBarController,我该怎么做?

有不明白的可以再问我

最佳答案

您可以将新 Controller 称为 modelviewController..这是一个选项..在 newController init tabController 的 viewDidLoad 中..

UIViewController *newViewController = [[UIViewController alloc] init];
[self presentModalViewController:newViewController animated:YES];

.或者如果你想从右到左推送导航..你可以从右到左为新 Controller 的 View 设置动画,并将当前 Controller 的 View 推到屏幕左侧..另一个选项..但是我推荐第一个...

关于ios - 如何在没有导航 Controller 的情况下导航到另一个 Controller ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5177577/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com