I want to populate a UITableView
with a list of paired Bluetooth devices but I'm unsure how to obtain the view object so I can populate it. Under Android each UI element is assigned a resource ID which is used to get an instance of a particular UI element but I'm not sure how this is done in iOS.
In my ViewController class I have this:
@IBOutlet weak var btListView: UITableView!
I'm looking to assign this variable to the Tableview instance on my main storyboard presumably within viewDidLoad().
Also, when I try to assign an outlet to the view by right clicking it in the storyboard the + options are there but nothing happens when I click New Referencing Outlet.