设备上不会出现加载屏幕 - Cocoa OS
大家好,我创建了一个在应用程序开头加载的加载/启动屏幕,仅显示公司名称。它在模拟器上运行得很好,但由于某种原因,当我在 itouch 上加载游戏时,我只是遇到黑屏。有什么想法吗?我使用睡眠(5);创建加载屏幕的方法。
Hey all, I've created a loading/splash screen that loads at the beginning of my app, just simply showing the company name. It works great on the simulator, but for some reason I just get a black screen when I load the game on my itouch. Any Ideas? I use the sleep(5); method of creating a loading screen.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需将图片命名为“Default.png”,加载时就会显示。 :)
Just call the picture "Default.png" and it will show when loading. :)
比调用 sleep 更好的主意是将启动屏幕显示为根视图的子视图。当您准备好关闭启动屏幕时,请使用 CATransition 淡出启动屏幕。
A better idea than calling sleep would be to present your splash screen as a subview of the root view. When you are ready to dismiss the splash screen use
CATransition
to fade out your splash screen.