I have a Custom view that is a subClass of UIView . I want to show its properties on storyBoard Inspector Panel So that it can be edited directly from StoryBoard in future . An Example
class CustomView : UIView {
// This Property should be editable via StoryBoard
var Color : UIColor = UIColor().greenColor()
}