常规写法
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”,这样比较合理。
网友评论