Skip to content

Instantly share code, notes, and snippets.

@susieyy
Created August 19, 2016 12:11
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 susieyy/7ee9e06861774879a816bfaf49ba806f to your computer and use it in GitHub Desktop.
Save susieyy/7ee9e06861774879a816bfaf49ba806f to your computer and use it in GitHub Desktop.
final class SearchContainerViewController: UIViewController {
let hoge: Hoge
convenience init(hoge: Hoge) {
self.init(nibName: nil, bundle: nil)
self.hoge = hoge
}
override init(nibName nibNameOrNil: String!, bundle nibBundleOrNil: NSBundle!) { super.init(nibName: nil, bundle: nil) }
required init?(coder aDecoder: NSCoder) { fatalError("init(coder:) has not been implemented") }
override func viewDidLoad() {
super.viewDidLoad()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment