在手机应用程序中预加载视图
当我的应用程序启动时,在启动视图完全加载之前会出现黑屏。有没有办法在应用程序加载时显示进度视图或其他内容。就像 Mac 一样,Windows 或任何简单的应用程序都有一个预加载屏幕。
When my app launches there's a black screen before the startup view is completely loaded. Is there a way I can have a progressview or something while the app is loading. Just like Mac , windows or any simple app has a preloading screen.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 Default.png 图像来代替创建预加载视图,该图像将在应用程序加载时显示。
iOS 人机界面指南说,
Instead of creating a preload view you can use Default.png image, which will be shown when the app loads.
iOS Human Interface Guidelines says,
您可以在
MainWindow.xib
文件中添加 UIView 并查看当应用程序加载时,以编程方式隐藏 UIView 或者您也可以在 UIImageView 中的 UIImageView 中添加动画以获取进度,如下面在 UIImageView 中解释的那样...当应用程序加载您时可以隐藏该视图...
您还可以在项目中设置 SplashScreen ..只需将图像重命名为
Default.png
,它会在应用程序启动时自动加载该图像..正如我已成功完成此操作在我的应用程序..
快乐编码...
You can add UIView in
MainWindow.xib
file and see When app Loads, Hide that UIView Programmatically or You can also add animation in UIImageView inside UIView for Progress like Explained below in UIImageView...When app loads you can hide that view...
You can also set SplashScreen in your project..Just rename your image as
Default.png
,It will automatically loads that image when app starts..As I had done this successfully in my application..
Happy Coding...
使用启动屏幕
http://adeem.me /blog/2009/06/22/creating-splash-screen-tutorial-for-iphone/
use splash screen
http://adeem.me/blog/2009/06/22/creating-splash-screen-tutorial-for-iphone/