以编程方式调用Storyboard-ViewController缓慢加载图像

时间:2015-02-23 13:17:46

标签: ios image swift viewcontroller

我设计了一个包含几张图片的视图。当我检查"是初始视图控制器"在Interface Builder中,它显示正常,包括图像。如果我通过代码调用它,图像只在大约30秒后加载。我的图像在Images.xcassets文件中定义。如果我将此文件放在root-project-directory或子文件夹中,则没有什么区别。

我是如何调用视图的:

// Tried different bundles here, e.g. NSBundle.mainBundle() or nil :
var storyboard = UIStoryboard(name: "Main", bundle: parentView.nibBundle) 
var loginView : LoginViewController = storyboard.instantiateViewControllerWithIdentifier("LoginViewController") as LoginViewController!

// Tried different PresentationStyle here, e.g. "FullScreen" :
loginView.modalPresentationStyle = UIModalPresentationStyle.Popover 
parentView.presentViewController(loginView, animated: true, completion: nil)

0 个答案:

没有答案