0
我是從一個xib文件加載的UIView子類。當我使用NSBundle.mainBundle()將xib加載到Viewcontroller中。loadNibName()我想要設置UIView的寬度,高度和背景顏色。這是我在初始化器中的,但是當我運行模擬器時,UIView沒有寬度,高度或背景顏色集。Swift設置子類UIView的寬度和高度
required init(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
self.backgroundColor = UIColor.blueColor()
self.bounds = CGRect(x: 0, y: 0, width: 150, height: 150)
}