2017-04-01 68 views
1

在快速操場中,您如何設置視圖控制器並使用它?我之前用UIView完成了它,但是在不同的方向上UI被切割了,所以我想嘗試使用viewcontroller。 我有let view = UIViewController()但在那之後我該如何設置它來添加背景和東西呢?如何在操場上設置ViewController?

回答

6

我發現,創造你需要這個代碼

>import UIKit 
import PlaygroundSupport 

class ViewController:UIViewController{ 
    override func viewDidLoad() { 
     super.viewDidLoad() 

    } 

} 

let viewController = ViewController() 
PlaygroundPage.current.liveView = viewController 
PlaygroundPage.current.needsIndefiniteExecution = true 
+1

對不起認爲答案是消失的錯誤,我將修改的答案迅速操場一個視圖 - 控制@EricAya –

相關問題