如何在開始時向每行添加動畫UITableView
?我想從左到右或從右到左的每一行都有一個動畫效果。動畫到uitableview中的每一行
相關的代碼,並沒有得到預期的效果:
float originalY = cell.frame.origin.y;
float originalH = cell.bounds.size.height;
[UITableViewCell animateWithDuration:1.0f delay:0.0f options:UIViewRowAnimationLeft animations:^{
cell.frame = CGRectMake(cell.frame.origin.x, (originalY + originalH), cell.bounds.size.width, 0);
}completion:^(BOOL finished) {
NSLog(@"Animation is complete");
}];