dequeueReusableCellWithIdentifier 与 dequeueReusableCellWithIdentifier:forIndexPath 区别

Posted 明明1109

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dequeueReusableCellWithIdentifier 与 dequeueReusableCellWithIdentifier:forIndexPath 区别相关的知识,希望对你有一定的参考价值。

参考:http://stackoverflow.com/questions/25826383/when-to-use-dequeuereusablecellwithidentifier-vs-dequeuereusablecellwithidentifi

 

  • 区别

对于dequeueReusableCellWithIdentifier:forIndexPath,如果没有为复用id注册一个class 或者nib的话,程序会崩溃(crash);

对于dequeueReusableCellWithIdentifier,如果没有复用id注册class或者nib,程序会返回nil。

 

  • 注册方式

registerClass:forCellReuseIdentifier:

registerNib:forCellReuseIdentifier

 

  • 为什么需要forIndexPath

因为在返回cell之前,会调用委托ableView:heightForRowAtIndexPath来确定cell尺寸(如果已经定义该函数)

以上是关于dequeueReusableCellWithIdentifier 与 dequeueReusableCellWithIdentifier:forIndexPath 区别的主要内容,如果未能解决你的问题,请参考以下文章