Animation UITableViewCell backgroundcolor
问题 I have a UITableView with cards in it. If a card is playable, the background color is green, if not, the background color is red. I want this to be animated in a pulsating way and I already managed to do so: -(void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath { Card *card; card = [[game playerCards] objectAtIndex:indexPath.row]; if(card.playable == IsPlayable){ [UIView animateKeyframesWithDuration:0.9 delay:0.0 options