在Swift中向UIView添加子类

时间:2016-11-26 18:06:38

标签: ios swift uiview swift-playground

我无法将子类添加到我的父UIView类。我正在尝试构建一个BOOK类,并有各种UIView和UIImageView类来构建封面和页面。将子类添加到SELF时出错。会喜欢一些见解。 PS - 总快速菜鸟

//book
class bookview : UIView {

    var cover: UIView!
    var backcover: UIView!
    var page: UIImageView!

    init (pages: Int) {

        //backcover cover
        backcover = UIView(frame: CGRect(x: 200, y: 200, width: bookwidth, height: bookheight))
        backcover.backgroundColor = UIColor.blue
        self.addSubview(backcover)  //ERROR HERE

        //pages
        for i in 0 ..< pages {

            page = UIImageView(frame: CGRect(x: bookwidth * i/10, y: bookheight * i/10, width: bookwidth, height: bookheight))
            page.backgroundColor = UIColor.red
            self.addSubview(page)   //ERROR HERE

        }

        //front cover
        cover = UIView(frame: CGRect(x: 0, y: 0, width: bookwidth, height: bookheight))
        cover.backgroundColor = UIColor.blue
        self.addSubview(cover)   //ERROR HERE

        super.init(frame: CGRect(x: 0, y: 0, width: bookwidth, height: bookheight))


    }

    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }

}


//add book
let book = bookview(pages: 3)

2 个答案:

答案 0 :(得分:2)

addSubview()UIView上的一种方法。 UIView是您视图的超类。在完全初始化之前,不能在超类上调用方法。

要解决此问题,请在您自己的super.init(frame:)功能中提前致电init()(在致电addSubview()之前)。

答案 1 :(得分:2)

问题是,在self调用它们之前,您无法在初始值设定项中调用self上的方法。在调用超类初始值设定项之前,self没有确定的值。换句话说,UIView的子类在尚未初始化为UIView时如何知道如何“addSubview”呢?

因此,在您的代码示例中,只需移动行:

super.init(frame: CGRect(x: 0, y: 0, width: bookwidth, height: bookheight))

在您拨打self.addSubview()

之前