是否有可能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:?