iPhone 故事板推送速度慢
我在 Xcode 中为我的 iPhone 应用程序设置了故事板,加载的第一个视图是 UINavigationController,然后从它的第一个视图控制器中我有一个按钮,在 Interface Builder 中我只是将其连接到第二个视图控制器。我里面有几个 UIImageView 和一个 UILabel,但几乎没有发生什么。
我的问题是,当我在我的设备 (iPhone 4) 上测试这个并点击该按钮时,需要 3-4 秒才能加载这个新视图。
希望你能解决这个问题。
谢谢。
I have a storyboard setup in Xcode for my iPhone app and the first view which loads is a UINavigationController and then from its first view controller I have a button which in Interface Builder I simply connected it to a second view controller. I have a couple of UIImageViews and a UILabel in it, but there is very little going on.
My issue being, when I test this on my device (iPhone 4) and I tap that button it takes a good 3-4 seconds to load this new view.
Hope you can resolve this.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试更改在第二个 VC 中加载的图像并注意持续时间。
以防万一,请尝试非常小的尺寸图像以了解是否存在任何问题。
Try changing the images that you are loading in the second VC and notice the duration.
Just in case, try very small size images to know if there is any issue.
尝试设置您的所有数据,
不要输入
希望这能解决您的问题。
try to set all your data in
don't put in
Hope This will solve your issue.