Three20 的 TTLauncher 视图不起作用
我按照教程制作了一个简单的启动器视图,就像在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我遇到了同样的问题。对我有用的解决方案是将“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]];
如果你只需要启动器效果,最好尝试这个,轻量级库
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!
在我看来,该方法:
最后缺少:
如果您需要更多帮助,请发布您的代码......
It seems to me that the method:
is lacking at the end:
If you need more help, please, post your code...