ios – UITableViewCell textLabel颜色不变

前端之家收集整理的这篇文章主要介绍了ios – UITableViewCell textLabel颜色不变前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个UITableView和cellForRowAtIndexPath方法我正在更改单元格的一些属性(字体,大小等)现在除了更改textLabel的颜色外,下面列出的所有赋值都可以正常工作.我无法弄清楚为什么只有那个特定的颜色属性不会改变.我看到了我能想到的任何地方,弄清楚为什么它不起作用而且我被卡住了.有任何想法吗?
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *kLocationAttributeCellID = @"bAttributeCellID";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:kLocationAttributeCellID];

    if (cell == nil) {

        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue2 reuseIdentifier:kLocationAttributeCellID] autorelease];

        cell.selectionStyle = UITableViewCellSelectionStyleBlue;
        cell.detailTextLabel.font = [UIFont fontWithName:@"Helvetica" size:14.0];
        cell.detailTextLabel.numberOfLines = 0;
        cell.detailTextLabel.lineBreakMode = UILineBreakModeWordWrap;
        cell.userInteractionEnabled = NO;
        cell.textLabel.font = [UIFont fontWithName:@"Courier" size:18.0];
        cell.textLabel.textColor = [UIColor redColor]; // this never takes effect...
    }

    cell.textLabel.text = @"Test Label";
    cell.detailTextLabel.text = @"Test Details";
    return cell;
}

解决方法

这是因为:
cell.userInteractionEnabled = NO;

如果您不希望您的单元格可选,请尝试使用此代码

cell.selectionStyle = UITableViewCellSelectionStyleNone;
原文链接:https://www.f2er.com/iOS/334500.html

猜你在找的iOS相关文章