私のプログラムには、本の名前、現在のページ、本の合計ページなどのいくつかの属性を持つ1つのエンティティで構成されるデータベースがあります。だから、読んだページに応じてテーブルビューのセルを色で塗りつぶしたい。たとえば、本を半分読んだ場合、セルも半分だけ色で塗りつぶされます (curPage/totalPage*widthCell)。これは私のcellForRowAtIndexPath:
方法です:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *result = nil;
static NSString *BookTableViewCell = @"BookTableViewCell";
result = [tableView dequeueReusableCellWithIdentifier:BookTableViewCell];
if (result == nil){
result = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:BookTableViewCell];
result.selectionStyle = UITableViewCellSelectionStyleNone;
}
Book *book = [self.booksFRC objectAtIndexPath:indexPath];
float width = result.contentView.frame.size.width;
double fill = ([book.page doubleValue]/[book.pageTotal doubleValue])*width;
CGRect rv= CGRectMake(0, 0, fill, result.contentView.frame.size.height);
UIView *v=[[UIView alloc] initWithFrame:rv];
v.backgroundColor = [UIColor clearColor];
v.backgroundColor = [UIColor yellowColor];
[[result contentView] addSubview:v];
result.textLabel.text = [book.name stringByAppendingFormat:@" %@", book.author];
result.textLabel.backgroundColor = [UIColor clearColor];
result.detailTextLabel.text =
[NSString stringWithFormat:@"Page: %lu, Total page: %lu",(unsigned long)[book.page unsignedIntegerValue],(unsigned long)[book.pageTotal unsignedIntegerValue]];
result.detailTextLabel.backgroundColor = [UIColor clearColor];
result.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
result.textLabel.font = [UIFont systemFontOfSize:12];
return result;
}
問題は、スクロールすると、ペイントしたセルの部分からテキストが消えてしまうことです。この問題を解決するにはどうすればよいですか?