TableView 用のカスタム Cell があり、その上に ImageView があります。
セルが強調表示されているときにのみ ImageView が表示されるのはなぜですか?
セルは次のように作成されます。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
Site *site = [self.dataController objectInListAtIndex:indexPath.row];
[[cell textLabel] setText:site.description];
return cell;
}