- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
if (shareEnabled)
{
// Determine the selected items by using the indexPath
NSString *selectedRecipe = [self.getName objectAtIndex:indexPath.row];
// Add the selected item into the array
[getImage addObject:selectedRecipe];
}
}
如何在iphone sdk中處理單個選擇。當我按下特定單元格時,它應該以相同視圖的大視圖顯示。如何在iphone中使用uicollectionview處理單個選擇
在我的數組中有圖像,然後如何在同一視圖中的圍兜視圖中顯示該圖像 – 2014-09-23 07:36:24
我已更新我的答案。它仍然有點不清楚如何獲取圖像(因爲集合視圖選擇返回一個字符串),所以我的答案涵蓋了基於文件名作爲字符串加載圖像的場景。 如果這不是你想要的,請提供一些你想要做什麼的更多細節。 – 2014-09-23 07:49:24
它正常工作,但我想,如果我按下視圖上的空白空間,然後imageview應該是disapear。 – 2014-09-23 08:46:51