各位大大是否有在开发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都正常
属性也可以设定