Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将UITableView图像作为行(单元格)。我用来EGOImageView从 http url 加载图像。它独立加载。
UITableView
EGOImageView
所以我的问题是 - 有没有办法从上到下一致地加载图像。fe 仅在第一次加载时加载第二个。
是的,您可以在 imageviews 的 alpha 属性上创建一系列动画。
connectionDidFinishLoading:(NSURLConnection *)connection在方法中重新加载 UITableView 。
connectionDidFinishLoading:(NSURLConnection *)connection
- (void)connectionDidFinishLoading:(NSURLConnection *)connection{ [yourTableView reloadData]; }