Three20 的 TTLauncher 视图不起作用

发布于 2024-11-28 04:20:27 字数 385 浏览 0 评论 0原文

我按照教程制作了一个简单的启动器视图,就像在 Facebook 应用程序中一样。但程序运行时屏幕上没有任何显示,仅显示白屏。我不知道为什么会发生这种情况,请帮忙。

我遵循的教程位于 [我已经按照教程制作了一个简单的启动器视图,就像在 facebook 应用程序中一样。但程序运行时屏幕上没有任何显示,仅显示白屏。我不知道为什么会发生这种情况,请帮忙。

我遵循的教程位于 http://iosguy.com/2010 /10/19/t Three20-a-brief-ttlauncherview-tutorial .]1 .

I have followed a tutorial to make a simple launcher view like in facebook app. But nothing is displayed on screen when program runs and it shows only a white screen. I dont know why this is happening plz help.

The tutorial i followed is at [I have followed a tutorial to make a simple launcher view like in facebook app. But nothing is displayed on screen when program runs and it shows only a white screen. I dont know why this is happening plz help.

The tutorial i followed is at http://iosguy.com/2010/10/19/tthree20-a-brief-ttlauncherview-tutorial .]1 .

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

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

发布评论

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

评论(3

放肆 2024-12-05 04:20:27

我遇到了同样的问题。对我有用的解决方案是将“MainWindow.xib”的背景设置为“透明颜色”(默认为“白色”)。
如果您没有 xib,您仍然可以在 AppDelegate 中设置颜色: [self.window setBackgroundColor:[UIColor clearColor]];

I encountered the same problem. The solution that worked for me was to set the background of my "MainWindow.xib" to "Clear Color" (default is "White Color").
If you have no xib, you can still set the color in your AppDelegate: [self.window setBackgroundColor:[UIColor clearColor]];

想你只要分分秒秒 2024-12-05 04:20:27

如果你只需要启动器效果,最好尝试这个,轻量级库

https://github.com/rigoneri/myLauncher

希望这有帮助!

if u need only launcher effect , better try this , light weight library

https://github.com/rigoneri/myLauncher

Hope this Helps!

只是我以为 2024-12-05 04:20:27

在我看来,该方法:

- (void)applicationDidFinishLaunching:(UIApplication *)application {

最后缺少:

[navigator.window makeKeyAndVisible];

如果您需要更多帮助,请发布您的代码......

It seems to me that the method:

- (void)applicationDidFinishLaunching:(UIApplication *)application {

is lacking at the end:

[navigator.window makeKeyAndVisible];

If you need more help, please, post your code...

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