2016-10-28 73 views
-1

我應該創建你在圖片中看到的內容。我有一組圖像,我應該將它們分組。當我點擊時應該打開一個包含所有圖像的窗口。有人有什麼主意嗎? enter image description hereSwift To Group圖片

+0

如何工作這不是實現它應符合UICollectionViewDelegate非常清楚你想要做什麼。你是否試圖將圖像融合成一個圖像?你想在集合中顯示多個圖像嗎? – daltonclaybrook

+0

我正在嘗試在集合中顯示多個圖像。當我點擊「+7」時應該出現其他圖像 –

+1

我的問題不是UICollectionView中的組圖像,而是用「+7」和動畫顯示其他圖像 –

回答

1

那麼既然你不知道我會給出一個簡短的。您需要collectionView和2個不同的​​。

  1. 首先收集細胞(含有UIImageView),其將用於顯示圖像
  2. 第二收集單元將具有一個UIImageView,它的透明UIView與黑色的上方,並且上述兩者應該有一個UILabel中間顯示您未顯示的照片數量。

UIViewController,你需要處理這件事情

func collectionView(_ collectionView: UICollectionView, 
        didSelectItemAt indexPath: IndexPath) { 
    // This is the last element where you show the second custom cell 
    if indexPath.item == collectionView.numberOfItems(inSection: indexPath.section) - 1 { 
     // Load all the items and pass it to the controller that you need to present 
    } 
} 

現在好運氣,因爲它可以幫助你獲得更好地理解事物上iOS