0

我正在使用 PSTCollection 视图进行网格布局,因此它将支持 iOS 5.0 以后的版本,但是当我单击一个单元格时,它工作正常。我试图在所选单元格上实现一个选择效果,比如发光边框,这样它会增加用户体验。任何人都知道如何在 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 回答