Created
December 4, 2017 08:45
-
-
Save action456789/d61fb72af1f7958636ca7e713cf2baef to your computer and use it in GitHub Desktop.
[UIViewController自定义初始化方法] #Swift
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
| class HomeRoomPageViewController: UIViewController { | |
| var floor: FloorModel | |
| init(floor: FloorModel) { | |
| self.floor = floor | |
| super.init(nibName: nil, bundle: nil) | |
| .... | |
| } | |
| required init?(coder aDecoder: NSCoder) { | |
| fatalError("init(coder:) has not been implemented") | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment