20170308: 设置点击UITableCell颜色不改变 &

2017-03-08  本文已影响13人  plantAtree_dAp

主题 : 设置点击UITableCell颜色不改变

把单元格点击时状态 改为None

 

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;

这个代理中   加上一句 

cell.selectionStyle = UITableViewCellSelectionStyleNone;





const 定义警告 Sending 'const NSString *__strong' to parameter of type 'NSString * _Nullable'...

const NSString * STOP_PRINT = @"停止打印";

在使用的地方出现警告

[objc] view plain copy 在CODE上查看代码片派生到我的代码片

[barItem setTitle:STOP_PRINT];
Sending 'const NSString *__strong' to parameter of type'NSString * _Nullable' discards qualifiers

讲const的位置放在*后面即可
[objc] view plain copy 在CODE上查看代码片派生到我的代码片

static NSString * const STOP_PRINT = @"停止打印"; 

上一篇下一篇

猜你喜欢

热点阅读