2
我試圖堅持這一點,並學習它,並在Swift中編寫一個應用程序,而不是默認爲Obj-C,雖然我一直陷在非常簡單的事情上,似乎無法在網上找到我的答案。迴歸的誘惑力很強。這是我想要做的。如何用swift創建一個自定義的UIView類?
class CircleView : UIView {
var title: UILabel
convenience init(frame: CGRect, title: String) {
}
override init(frame: CGRect) {
self.title = UILabel.init(frame: CGRectMake(0.0, 0.0, frame.size.width, frame.size.height))
super.init(frame: frame)
}
required init?(coder aDecoder: NSCoder) {
fatalError("CircleView is not NSCoding compliant")
}
}
我的目標是什麼......創建CircleView實例的人應該同時提供一個框架和一個字符串。我將如何實現這一目標?