无法显示框架内部的viewController

时间:2019-02-20 20:25:28

标签: ios swift frameworks

我正面临一个严重的问题。我有一个名为“ abc.framework”的框架,它包含一个函数,您可以在其中传递viewController对象。

//this is the method in my framework 

func launchView(view:UIViewController){

}

//this is what needs to be written on App side

myFrameworkFile.launchView(view: self)

上述方法用于在通过的viewController对象顶部显示框架的viewcontroller,即abc.framework viewController。启动方法包含以下代码:

func launchView(view:UIViewController)
{


var rootController: UIViewController?

    rootController = view

    let storyboard = UIStoryboard(name: "abcFrameworkBundle.bundle/abcUIMain", bundle: nil)
    let VC1 = storyboard.instantiateViewController(withIdentifier: "selectedviewcontroller") as! SelectedViewController

    rootController?.present(VC1, animated: true, completion: nil)
}

从上面的方法中,调用了viewController,SelectedViewController的viewDidLoad方法,但是未显示它,并且出现了以下警告

  

警告:尝试在   其视图不在窗口层次结构中!

有人遇到过同样的问题吗?

1 个答案:

答案 0 :(得分:0)

我猜您在myFrameworkFile.launchView(view: self)或更早的版本中将此方法称为viewDidLoad。尝试将其移入viewDidAppear