如何在ios

时间:2015-08-12 12:08:32

标签: ios iphone swift

让我解释一下我目前的情况。我在故事板上有一个ViewController CenterViewController。在该视图中,我有以下属性 -

@IBOutlet weak private var titleLabel: UILabel!
@IBOutlet var actualView: UIView!

我想通过程序动态分配视图。为此,我有一个属性,即 -

@IBOutlet var actualView: UIView!

我在故事板中创建了一个ViewController。现在我需要分配与该ViewController相关的视图 -

let newView = ContactsViewController().view
actualView = newView

我知道它不起作用,但我还能为此目的做些什么呢?

1 个答案:

答案 0 :(得分:-1)

我认为这会对你有所帮助:

let newView = ContactsViewController()
actualView = newView.view