Skip to content

Instantly share code, notes, and snippets.

@action456789
Created December 4, 2017 08:45
Show Gist options
  • Select an option

  • Save action456789/d61fb72af1f7958636ca7e713cf2baef to your computer and use it in GitHub Desktop.

Select an option

Save action456789/d61fb72af1f7958636ca7e713cf2baef to your computer and use it in GitHub Desktop.
[UIViewController自定义初始化方法] #Swift
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