UICollectionview cell selection UICollectionview cell 선택시 효과를 주는 방법입니다.저는 셀 선택시 테두리에 색을 입히는 방법을 썼습니다. int selectedCellIndex; 선언 - (UICollectionViewCell*)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath { MiddleCell* cell = (MiddleCell *)[collectionView dequeueReusableCellWithReuseIdentifier:@"MiddleCell" forIndexPath:indexPath]; if (selectedCellIn..