我正在尝试在UITableViewCell内部启动动画,但除非我做一些愚蠢的事情,否则它不会启动。代码被调用,但动画不做任何事情。如果我把它放在dispatch_async
里面来推迟,那么它就可以了。为什么会这样?为了让动画开始,我还需要等待什么?
- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
if(mNeedsAnimation)
{
//this will delay it a bit and make it work, but why?
//dispatch_async(dispatch_get_main_queue(), ^(void){ (
mViewToAnimate.transform = CGAffineTransformMakeScale(0.5f, 0.5f);
mViewToAnimate.hidden = NO;
mViewToAnimate.alpha = 1.f;
[UIView animateWithDuration:1 delay:0 options:UIViewAnimationOptionRepeat|UIViewAnimationCurveLinear animations:^{
mViewToAnimate.alpha = 0.0;
mViewToAnimate.transform = CGAffineTransformMakeScale(1.f, 1.f);
}completion:nil];
//});
mNeedsAnimation = NO;
}
}
答案 0 :(得分:2)
我认为这是因为当调用willDisplayCell时,单元格仍在屏幕外,无法动画。