Skip to content

Instantly share code, notes, and snippets.

@justinmakaila
Created February 6, 2015 18:08
Show Gist options
  • Select an option

  • Save justinmakaila/2efd0d61261fa0e31b1c to your computer and use it in GitHub Desktop.

Select an option

Save justinmakaila/2efd0d61261fa0e31b1c to your computer and use it in GitHub Desktop.
UIView+NibView
import UIKit
extension UIView {
class func instantiateNibView<T: UIView where T: NibView>(type: T.Type) -> T {
return type.nib().instantiateWithOwner(nil, options: nil).first! as T
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment