Swift2中的自定义视图

时间:2015-08-15 12:25:59

标签: uiview storyboard swift2 ios9

我有一个自定义视图,它是UIView的子类。我想在storyBoard Inspector Panel上显示它的属性,以便将来可以直接从StoryBoard进行编辑。一个例子

std::auto_ptr<T>

1 个答案:

答案 0 :(得分:2)

这是怎么做的:

http://nshipster.com/ibinspectable-ibdesignable/

class CustomView : UIView {
  @IBInspectable // Add this line
  var Color : UIColor = UIColor().greenColor()
}