-1
我應該創建你在圖片中看到的內容。我有一組圖像,我應該將它們分組。當我點擊時應該打開一個包含所有圖像的窗口。有人有什麼主意嗎? Swift To Group圖片
我應該創建你在圖片中看到的內容。我有一組圖像,我應該將它們分組。當我點擊時應該打開一個包含所有圖像的窗口。有人有什麼主意嗎? Swift To Group圖片
那麼既然你不知道我會給出一個簡短的。您需要collectionView
和2個不同的。
UIImageView
),其將用於顯示圖像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
如何工作這不是實現它應符合
UICollectionViewDelegate
非常清楚你想要做什麼。你是否試圖將圖像融合成一個圖像?你想在集合中顯示多個圖像嗎? – daltonclaybrook我正在嘗試在集合中顯示多個圖像。當我點擊「+7」時應該出現其他圖像 –
我的問題不是UICollectionView中的組圖像,而是用「+7」和動畫顯示其他圖像 –