テーブルビューがあり、そのコンテンツを動的にリロードしています。テーブルのコンテンツをリロードするために、次のコードを使用しています。
[agendaTable reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationFade];
これは正常に機能しますが、問題は、テーブルセルのアルファプロパティを次のように設定していることです。
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
if([cell isKindOfClass:[AgendaItemBlank class]])
cell.backgroundColor = [UIColor clearColor];
else if([cell isKindOfClass:[AgendaItem class]])
{
cell.backgroundColor = [UIColor whiteColor];
[cell setAlpha:0.82];
//set the corner radius so that there is a rounded effect
[cell.layer setBorderWidth:0.5];
[cell.layer setCornerRadius:9.0];
[cell.layer setBorderColor:[UIColor redColor].CGColor];
[cell.layer setMasksToBounds:YES];
//set a different color for the selected background
UIView *bgColorView = [[UIView alloc] init];
[bgColorView setBackgroundColor:[UIColor redColor]];
[bgColorView.layer setCornerRadius:9.0];
[cell setSelectedBackgroundView:bgColorView];
[bgColorView release];
}
}
これらの組み合わせにより、リロード後、テーブルセルが最初に不透明になり、すべてのプロパティが有効になりますが、alphaプロパティは有効になりません。
セルは、上下にスクロールすると(基本的には再描画されると)、アルファプロパティを回復します。
内でアルファを設定しようとしました- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
が、効果はありません。