- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
cell.backgroundColor = [UIColor whiteColor];
//Animation
cell.layer.transform = CATransform3DMakeScale(0.1,0.1,1);
[UIView animateWithDuration:0.25 animations:^{
cell.layer.transform = CATransform3DMakeScale(1,1,1);
}];
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.