iPhone - 应用程序总是以空白屏幕启动?

发布于 2024-10-06 19:19:45 字数 573 浏览 1 评论 0原文

我无法让我的 iPhone 应用程序在启动时显示任何内容。 知道这里出了什么问题吗?

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 
{ 
     HomeViewController *t = [[HomeViewController alloc] init];
     [self.window addSubview:t.view];
     [self.window makeKeyAndVisible];

     // I tried the following in case the problem is my
     //view controller but nothing shows up at all
     UISegmentedControl *t = [[UISegmentedControl alloc] init];
     [self.window addSubview:t];
     [self.window makeKeyAndVisible];
}

I can't get my iPhone app to display any of the content on startup.
Any idea what's wrong here?

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 
{ 
     HomeViewController *t = [[HomeViewController alloc] init];
     [self.window addSubview:t.view];
     [self.window makeKeyAndVisible];

     // I tried the following in case the problem is my
     //view controller but nothing shows up at all
     UISegmentedControl *t = [[UISegmentedControl alloc] init];
     [self.window addSubview:t];
     [self.window makeKeyAndVisible];
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

墨离汐 2024-10-13 19:19:45

除非您的视图控制器实现了 loadView,否则您应该使用 initWithNibName:bundle: 从 NIB 文件加载视图。

分段控件应使用 initWithItems: 进行初始化。您还应该为控件分配一个框架。

Unless your view controller implements loadView, you should load the view from a NIB file with initWithNibName:bundle:.

A segmented control should be initialized with initWithItems:. You should also assign a frame to the control.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文