当我们在自定义一个控件的时候,为了在视图编辑器中方便进行设置自定义了的新属性
可以用以下方式实现,只要在相应地方加上:IB_DESIGNABLE 和 IBInspectable
IB_DESIGNABLE @interface ZTransitionSubmitButton : UIButton <UIViewControllerTransitioningDelegate> @property (nonatomic, retain) IBInspectable UIColor *highlightedBackgroundColor; @property (nonatomic, retain) IBInspectable UIColor *normalBackgroundColor; @end