A few months back there was a question posted regarding a custom input view, it was answered by David Berry
The answer works perfectly but I've been trying to get the same to work with a storyboard rather then a nib.
What is the equivalent code to load this with a storyboard in place of a nib?
if let objects = NSBundle.mainBundle().loadNibNamed("InputView", owner: self, options: nil) {
myInputView = objects[0] as UIView
}