小编use*_*271的帖子

点击时,UICollectionView单元格会更改背景

是否有可能UICollectionView仅在轻敲元素时更改背景颜色.我试过了:

-(void) collectionView:(UICollectionView *)collectionView didHighlightItemAtIndexPath:(NSIndexPath *)indexPath{
    //change color when tapped
}

-(void)collectionView:(UICollectionView *)collectionView didUnhighlightItemAtIndexPath:(NSIndexPath *)indexPath{
    //change back on touch up 
}
Run Code Online (Sandbox Code Playgroud)

但结果是,只有当我的手指保持更长时间时才能看到变化.是否有类似UITableViewCell方法的东西willSelectItemAtIndexPath:

objective-c ios uicollectionview

8
推荐指数
2
解决办法
2万
查看次数

标签 统计

ios ×1

objective-c ×1

uicollectionview ×1