UICollectionView
要素がタップされている間だけ背景色を変更する可能性はありますか? 私が試してみました:
-(void) collectionView:(UICollectionView *)collectionView didHighlightItemAtIndexPath:(NSIndexPath *)indexPath{
//change color when tapped
}
-(void)collectionView:(UICollectionView *)collectionView didUnhighlightItemAtIndexPath:(NSIndexPath *)indexPath{
//change back on touch up
}
しかし、結果として、指をもう少し長く置いた場合にのみ変化が見られます。UITableViewCell
メソッドのようなものはありwillSelectItemAtIndexPath:
ますか?