實現功能是每次按下cell就會變換圖片
- (void)collectionView:(UICollectionView *)collectionView didDeselectItemAtIndexPath:(NSIndexPath *)indexPath
{
if ([[arrayOfImages objectAtIndex:indexPath.item] isEqual: @"dog.png"]) {
[arrayOfImages replaceObjectAtIndex:indexPath.item withObject:@"cat.png"];
} else if ([[arrayOfImages objectAtIndex:indexPath.item] isEqual: @"cat.png"]) {
[arrayOfImages replaceObjectAtIndex:indexPath.item withObject:@"lion.png"];
} else if ([[arrayOfImages objectAtIndex:indexPath.item] isEqual: @"lion.png"]) {
[arrayOfImages replaceObjectAtIndex:indexPath.item withObject:@"dog.png"];
}
[myCollectionView reloadData];
}
運行之後,點擊一個cell,沒有任何事情發生,但是如果點擊其他cell,前一個cell就變換圖片了。每次都是點擊下一個cell上一個cell才開始變化圖片。
是不是因為點擊時collectionView沒有更新?
那個,你用的是didDeselect。。。應該是didSelect。。。