0

グリッド レイアウトに PSTCollection ビューを使用しているため、iOS 5.0 以降をサポートしますが、1 つのセルをクリックすると正常に動作します。選択したセルにグロー ボーダーのような選択効果を実装しようとしているので、ユーザー エクスペリエンスが向上します。 PSTCollectionviewでそれを行うには?

4

1 に答える 1

1
- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
    CustomCell *customCell = (CustomCell *)[collectionView dequeueReusableCellWithReuseIdentifier:@"CustomCell" forIndexPath:indexPath];

    //TODO: Customize your cell here
}
于 2013-07-03T06:40:29.473 に答える