I\'m trying to create a simple tableView programmatically using swift, so I wrote this code on \"AppDelegate.swift\" :
func application(application: UIA
Instead of
init(style: UITableViewStyle) { super.init(style: style) }
you might find this handy:
convenience init() { self.init(style: .Plain) title = "Plain Table" }
Then, you can just call TableViewController() to initialize.
TableViewController()