For example when the numberOfRowsInSection
method is called rather than when explicitly calling reloadData()
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 1;
}
I am aware that this method is being fired when reloadData() is called. However I was wondering if anybody know when in the lifecycle these methods run automatically for the first time.
This is a curiosity kind of question if anyone happens to have looked into it.