Ios UITableViewCell在使用动画重新加载节后不设置内容动画

Ios UITableViewCell在使用动画重新加载节后不设置内容动画,ios,uitableview,Ios,Uitableview,我有两个部分的UITableView,第一部分有很多控件,第二部分我有很多单元格有结果的内容 当我在表格视图中调用realodSections时,在进行所有抓取之后,我希望当我的单元格出现时在标签上播放动画 [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:1] withRowAnimation:UITableViewRowAnimationTop]; 在以下位置设置动画: - (UITableViewCell *)tab

我有两个部分的UITableView,第一部分有很多控件,第二部分我有很多单元格有结果的内容

当我在表格视图中调用realodSections时,在进行所有抓取之后,我希望当我的单元格出现时在标签上播放动画

[self.tableView reloadSections:[NSIndexSet indexSetWithIndex:1] withRowAnimation:UITableViewRowAnimationTop];
在以下位置设置动画:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

[...]

if (indexPath.row==0) {
   [UIView animateWithDuration:0.5 delay:1 options:UIViewAnimationOptionCurveEaseInOut animations:^{
            cellBgView.layer.cornerRadius = 5;
            cellBgView.frame = frame; // new frame
        } completion:nil];
    }
}


return cell;
}
结果:只有在调用了三到两次方法重载部分后,才会出现动画