gpt4 book ai didi

iphone - 淡入淡出动画 UITableViewCell

转载 作者:行者123 更新时间:2023-12-03 18:55:48 25 4
gpt4 key购买 nike

我有一个 UITableViewController,它用我从网上获取的一些数据填充 UITableView。每个单元格的数据还包含用作背景的图像,我将其下载到一个单独的 NSOperation 中,添加到 NSOperationQueue 中,并将 MaxConcurrentOperationCount 设置为 4。只要未下载图像,我就会我正在显示一个通用占位符,一旦成功下载,我想将其替换为下载的图像(淡出/淡入)。

我使用放置在 UITableViewController 的 cellForRowAtIndexPath 内的以下代码。

[UIView beginAnimations:@"fade" context:nil];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationDuration:3.0];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
cell.placeholderUIImage.alpha = 0.0;
cell.backgroundUIImage.alpha = 1.0;
[UIView commitAnimations];

不幸的是,这只是对几行随机工作,因为大多数情况下背景图像是立即设置的,就好像在一个单元格上开始的动画将被下一次调用 beginAnimations< 所“覆盖”一样.

最佳答案

UITableView 内置支持使用淡入淡出动画重新加载行,只需调用 [tableView reloadRowsAtIndexPaths:... withRowAnimation:UITableViewRowAnimationFade] 并确保您的cellForRowAtIndexPath 不会返回表中已有的 UITableViewCell 实例。

关于iphone - 淡入淡出动画 UITableViewCell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5248463/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com