Skip to content

Instantly share code, notes, and snippets.

@cbowns
Last active June 22, 2016 23:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cbowns/971f9e8c715b408e6f48b46558fa4303 to your computer and use it in GitHub Desktop.
Save cbowns/971f9e8c715b408e6f48b46558fa4303 to your computer and use it in GitHub Desktop.
// When calling `init()`, iOS 8 doesn't load our xib. Make sure we do.
// http://stackoverflow.com/a/25152545/774)
convenience init() {
let className = String(self.dynamicType).componentsSeparatedByString(".").last
self.init(nibName: className, bundle: nil)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment