Skip to content

Instantly share code, notes, and snippets.

@Jimmy-Prime
Last active October 21, 2021 03:30
Show Gist options
  • Save Jimmy-Prime/916c6f3e3b535a38a9ce34e74cbcd0c8 to your computer and use it in GitHub Desktop.
Save Jimmy-Prime/916c6f3e3b535a38a9ce34e74cbcd0c8 to your computer and use it in GitHub Desktop.
@objc class SettingsViewController: UITableViewController {
@objc convenience init() {
self.init(categories: SettingCategory.allCases)
}
init(categories: [SettingCategory]) {
super.init(nibName: nil, bundle: nil)
}
required init?(coder: NSCoder) {
fatalError()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment