美文网首页
为什么tableView重用cell要用static关键字

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

作者: BetterComingDay | 来源:发表于2017-09-25 10:44 被阅读149次

常规写法

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

相关文章

网友评论

      本文标题:为什么tableView重用cell要用static关键字

      本文链接:https://www.haomeiwen.com/subject/wmprextx.html