各位大大是否有在開發cocoa touch framework中
如使用@IBDesignable來創建 UIView的屬性@IBInspectable
如:
@IBDesignable public class BorderedButton: UIButton {
@IBInspectable var cornerRadius: CGFloat = 0 {
didSet {
layer.cornerRadius = cornerRadius
layer.masksToBounds = cornerRadius > 0
}
}
在cocoa touch framework中使用uint test這個view 屬性
在cocoa touch framework中使用uint test這個view 屬性
custom class 與 module都正常
屬性也可以設定