我在 Objective C 中创建了一个类类别:
#import <UIKit/UIKit.h>
@interface UIView (LayerProperties)
@property IBInspectable (nonatomic) CGFloat cornerRadius;
@property IBInspectable (nonatomic) CGFloat borderWidth;
@property IBInspectable (nonatomic, strong) UIColor *borderColour;
@end
如果我导入标题,这一切都很好并且有效。添加 UIView 时,如何在 Interface Builder 中显示此类别?
Best Answer-推荐答案 strong>
试试这个。界面生成器中的 KVC。也许你需要子类
或者创建子类并使用 IBInspectable/IBDesignable
(http://nshipster.com/ibinspectable-ibdesignable/)
关于ios - Interface Builder 中的 Objective C 类类别,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/37177924/
|