为什么tableView重用cell要用static关键字

2017-09-25  本文已影响149人  BetterComingDay

常规写法

static NSString *identifier = @"MoneySection";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
cell.textLabel.text = @"需支付金额:¥160.00";
return cell;

分析一下不加static的情况
1、identifier存在栈区,出了最后大括号}就被栈自动回收;这样每次调用cellForRowAtIndexPath方法,栈中都要重新生成临时变量identifier,并让其指向常量区@“MoneySection”, 消耗内存;

3、如果加上static,栈中的变量identifier就不会销毁,一直指向常量区的@“MoneySection”,这样比较合理。

参考:http://www.cnblogs.com/stevenwuzheng/p/5377919.html

上一篇 下一篇

猜你喜欢

热点阅读