美文网首页
20170308: 设置点击UITableCell颜色不改变 &

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

作者: plantAtree_dAp | 来源:发表于2017-03-08 15:45 被阅读13次

主题 : 设置点击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 = @"停止打印"; 

相关文章

网友评论

      本文标题:20170308: 设置点击UITableCell颜色不改变 &

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