Skip to content

Instantly share code, notes, and snippets.

@nvkiet
Last active August 29, 2015 14:04
Show Gist options
  • Select an option

  • Save nvkiet/cf8322a8f1adf43f8423 to your computer and use it in GitHub Desktop.

Select an option

Save nvkiet/cf8322a8f1adf43f8423 to your computer and use it in GitHub Desktop.
Updated code to these changes for Xcode 6 beta 5
// Indicate != nil instead of bool
if navigationController {
}
if navigationController != nil {
}
// Use require keywork for require methods
required init(coder aDecoder: NSCoder!) {
super.init(coder: aDecoder)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment