gpt4 book ai didi

ios - 在特定时间间隔后更改 UICollectionView 中的图像

转载 作者:行者123 更新时间:2023-11-29 10:22:05 25 4
gpt4 key购买 nike

我在 UICollectionView 中有 6 个单元格。我想在特定时间间隔后更改每个 UICollectionViewCell 中的图像。这怎么可能?

最佳答案

你可以这样做:

[NSTimer scheduledTimerWithTimeInterval:10.0f  
target:self
selector:@selector(updateImage:)
userInfo:nil
repeats:YES];

- (void)updateImage
{
[yourImageview setImage:[UIImage imageWithName:@"image1"]];
[yourCollectionView reloadData];
}

关于ios - 在特定时间间隔后更改 UICollectionView 中的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34510224/

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