代码之家  ›  专栏  ›  技术社区  ›  Austin Berenyi

为什么在我的自定义uiview类中没有调用init(frame:cgrect)?

  •  0
  • Austin Berenyi  · 技术社区  · 6 年前

    我有一个子类 UIView 打电话 GradientView 我用的是 UITableViewCell

    layoutSubviews() 是的,但是我的 init 方法从不被调用。

    import UIKit
    
    class GradientView: UIView {
    
    var gradientLayer = CAGradientLayer()
    
        override init(frame: CGRect) {
    
            super.init(frame:frame)
    
            self.backgroundColor = .orange
            gradientLayer.colors = [UIColor.clear.cgColor, UIColor.black.cgColor]
            gradientLayer.locations = [0.6, 1.0]
            gradientLayer.frame = self.bounds
            self.layer.insertSublayer(gradientLayer, at: 0)
        }
    
        override func layoutSubviews() {
            super.layoutSubviews()
    
            self.gradientLayer.frame = self.bounds
        }
    
        required init?(coder aDecoder: NSCoder) {
            super.init(coder: aDecoder)
        }
    
    }
    

    我错过了什么?

    1 回复  |  直到 6 年前
        1
  •  1
  •   EmilioPelaez    6 年前

    UITableViewCell 通常不是用 init(frame:) ,它初始化为 init(style: UITableViewCellStyle, reuseIdentifier: String?) required init?(coder aDecoder: NSCoder) .

    第一个将在向表视图注册类时使用,第二个将在从情节提要初始化类或向表视图注册xib文件时使用。