numberOfSectionsInTableView
和numberOfRowsInSection
都在我的桌子上调用。我正在使用的数组中有3个项目。
cellForRowAtIndexPath
。什么会导致这种行为?
答案 0 :(得分:2)
可能与tableView的尺寸有关。有关详细信息,请参阅this other answer。基本上,所说的是如果你的tableView太小,那么永远不会调用cellForRowAtIndexPath
方法。尝试使tableView更小,或减小tableView的页眉或页脚的大小。如果这不起作用,请尝试在主线程上使用tableView.reloadData()
重新加载表。