ios - 单元格出现时使用 AutoLayout 为 UITableViewCell 内容设置动画
<p><p>我有一个 <code>UITableView</code> 显示单元格。我正在使用自动布局。在某些时候,我将单元格添加到我的 tableView 的一部分中,并且一旦单元格可见,我需要为每个单元格的 subview 设置动画。</p>
<p>我编写了以下方法来为单元格的内容设置动画:</p>
<pre><code>- (void)animateWithPercentage:(NSNumber *)percentage
{
self.progressViewWidthConstraint.constant = ;
;
[UIView animateWithDuration:0.6f animations:^{
;
}];
}
</code></pre>
<p>该方法按预期工作,但我不知道何时调用它。</p>
<p>如果我在调用 <code>- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath</code> 时调用它,我最终会为整个布局设置动画我的单元格,因为单元格之前没有自己布局。</p>
<p>我也尝试在 <code>layoutSubviews</code> 中调用它,但动画被跳过了。我想现在做动画还为时过早。</p>
<p>知道我的方法应该在哪里调用吗? </p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我已经通过在自定义单元格类的 awakeFromNib 或 didMoveToSuperview 中调用 performSelector:withObject:afterDelay: 来获得这种动画。即使延迟为 0,它也可以工作,但如果你只使用 performSelector,它就不起作用。我注意到,使用这种方法,如果某些单元格不在屏幕上,它们在滚动之前不会更新,并且滚动动画结束。您可以在单元格在屏幕上滚动时立即开始动画,即使滚动动画仍在进行中,也可以使用 dispatch_async 代替。</p>
<pre><code>-(void)awakeFromNib {
dispatch_async(dispatch_get_main_queue(), ^{
[UIView animateWithDuration:2 animations:^{
self.rightCon.constant = 150;
;
} completion:nil];
});
}
</code></pre></p>
<p style="font-size: 20px;">关于ios - 单元格出现时使用 AutoLayout 为 UITableViewCell 内容设置动画,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/26865529/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/26865529/
</a>
</p>
页:
[1]