标签:
参考: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
因为在返回cell之前,会调用委托ableView:heightForRowAtIndexPath
来确定cell尺寸(如果已经定义该函数)
dequeueReusableCellWithIdentifier 与 dequeueReusableCellWithIdentifier:forIndexPath 区别
标签:
原文地址:http://www.cnblogs.com/fortunely/p/5631639.html