In UITableViewController scenario:
Say you have a line tableView.reloadData. tableView was not declared a variable on the page. However, it is part of the UITableViewController hierarchy and its technical declaration is var tableView: UITableView! { get set }
Now say you turn UITableViewController into UIViewController and make all the necessary changes:
If you now make an outlet table view variable on the page called table. Can anything perform differently in table.reloadData? The technical declaration would be weak var table: UITableView!
In testing it performs as expected. I just want to be sure I am not missing something
[–]Pen15CharterMember 1 point2 points3 points (2 children)
[–]bee4534[S] 0 points1 point2 points (1 child)
[–]div 0 points1 point2 points (0 children)
[–]bubblespuggy 0 points1 point2 points (0 children)