我想在向UITableView添加单元格时显示动画。
这是我实现的(伪代码)
[self.tableView beginUpdates];
// remove row exists
[self.tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:(rows exists) withRowAnimation:UITableViewRowAnimationFade];
(chang data source here, for me, it's NSFetchedResultsController)
// insert new rows
[self.tableView insertRowsAtIndexPaths:(new rows) withRowAnimation:UITableViewRowAnimationFade];
[self.tableView endUpdates];
此代码可以很好地显示动画,但它有一个小问题。
单元格显示从框架rect(0,0,0,0)到其实际位置的动画移动,而不仅仅是淡化动画。
我认为问题是单元格的初始帧是(0,0,0,0),所以我在cellForRowAtIndexPath中设置了单元格的初始帧属性,但它不起作用。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
....
cell.frame = CGRectMake(0, indexPath.row * 64, 320, 64);
NSLog(@"set frame");
....
}
如何才能显示阴影效果,没有细胞移动动画?
答案 0 :(得分:1)
代码未经测试,但该想法应该有效:
BOOL animateRowsAlpha = NO;
- (void)reloadData {
[UIView animateWithDuration:0.2
animations:^{
for (UITableViewCell *cell in self.tableView.visibleCells) {
cell.alpha = 0.0f;
}
} completion:^(BOOL finished) {
animateRowsAlpha = YES;
[self.tableView reloadData];
}
];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *cellIdentifier = @"Cell";
UITableViewCell *cell = (UITableViewCell *)[tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (!cell)
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier] autorelease];
if(animateRowsAlpha)
cell.alpha = 0.0;
return cell;
}
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
if (!animateRowsAlpha) {
return;
}
[UIView animateWithDuration:0.2
animations:^{
cell.alpha = 1.0f;
}];
NSArray *indexPaths = [tableView indexPathsForVisibleRows];
NSIndexPath *lastIndexPath = [indexPaths lastObject];
if(!lastIndexPath || [lastIndexPath compare:indexPath] == NSOrderedSame) {
animateRowsAlpha = NO;
}
}