Last active
August 29, 2015 14:04
-
-
Save nvkiet/cf8322a8f1adf43f8423 to your computer and use it in GitHub Desktop.
Updated code to these changes for Xcode 6 beta 5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // 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