gpt4 book ai didi

uitableview - ios6、UITableViewCell背景

转载 作者:行者123 更新时间:2023-12-04 22:33:56 25 4
gpt4 key购买 nike

我在使用 ios6 和 UITableViewCell 时遇到了麻烦。未设置背景色,这是在 ios5 中使用的

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

UITableViewCell *cell = nil;

NSString *contentForThisRow = [[self myArray] objectAtIndex:[indexPath row]];

cell = [tableView dequeueReusableCellWithIdentifier:@"noticeCell"];

if(cell == nil){
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"noticeCell"];
}


cell.textLabel.text = contentForThisRow;

id path = [NSString stringWithFormat:@"myip%@.jpeg", IDimage];
NSURL *url = [NSURL URLWithString:path];
NSData *data = [NSData dataWithContentsOfURL:url];
UIImage *img = [[UIImage alloc] initWithData:data];

cell.imageView.image = img;


cell.textLabel.font = [UIFont fontWithName:@"Helvetica" size:15.0];


UIColor *cellBackground = [UIColor colorWithRed:235.0/255.0 green:245.0/255.0 blue:255.0/255.0 alpha:0.25];


cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
cell.selectionStyle = UITableViewCellSelectionStyleNone;

[cell setBackgroundColor:cellBackground];


return cell;

}

但现在我无法再次设置它!

我该怎么做?

谢谢!

最佳答案


cell.contentView.backgroundColor= [UIColor blueColor];

您可以为单元格文本标签背景使用清晰的颜色。

它应该工作。
:)

关于uitableview - ios6、UITableViewCell背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12802141/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com