不知道为什么,写了个继承自UITableViewController的控制器,在模型中计算cell的高度,发现只有滑动的时候,才会显示cell上的内容,开始加载的时候,cell上的内容不会显示。
后来发现是 :viewDidLoad:中,注册了cell, 在重用的时候,使用的 dequeueReusableCellWithIdentifier:
解决方案 : 换成 dequeueReusableCellWithIdentifier:forIndexPath:
就可以了
不知道为什么,写了个继承自UITableViewController的控制器,在模型中计算cell的高度,发现只有滑动的时候,才会显示cell上的内容,开始加载的时候,cell上的内容不会显示。
后来发现是 :viewDidLoad:中,注册了cell, 在重用的时候,使用的 dequeueReusableCellWithIdentifier:
解决方案 : 换成 dequeueReusableCellWithIdentifier:forIndexPath:
就可以了
本文标题:dequeueReusableCellWithIdentifie
本文链接:https://www.haomeiwen.com/subject/mewtmxtx.html
网友评论