I create a controller from storyboard with a tableView in it.
After I compile and run it, the tableView will be shown, but when I use self.view.subviews to get its subviews in the viewDidLoad method, I can not find the tableView.
Additionally, I try performing the method [self.tableView removeFromSuperview] in viewDidLoad, but the tableView will still be shown at last.
It seems when the viewDidLoad performed, the tableView has not been added the the super view yet. However, in another controller created by storyboard as well, I can get the tableView using self.view.subviews in viewDidLoad...
I am wondering what lead to this and when will the tableView be added.