我正在制作界面原型(prototype),并且正在使用 Storyboard 来做到这一点。原型(prototype)的一部分涉及将 UITableView 单元格的详细 UILabel 设置为某种颜色。我想避免手动重新着色 Storyboard 中的每个标签。
我发现我可以使用:
[[UILabel appearanceWhenContainedIn:[UITableViewCell class], nil]
setTextColor:[UIColor cyanColor]];
更改表格 View 单元格中标签的外观。 有没有办法进一步细化这段代码,使其仅适用于详细的表格 View 标签?目前它同时更改了 UITableViewCell 的 textLabel 和 detailTextLabel。
谢谢!
Best Answer-推荐答案 strong>
您可以通过子类化详细 View 中的单元格来绕过这个问题,然后使用
[[UILabel appearanceWhenContainedIn:[YOUR_UITableViewCell class], nil]
setTextColor:[UIColor other_colr]];
关于objective-c - iPhone iOS UILabel如何仅为UITableView详细文本标签自定义文本颜色?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/11018254/
|