importFoundationimportUIKitclassCreateShopMemoViewController:UIViewController,UICollectionViewDataSource{/// UICollectionView@IBOutletweakvarcollectionView:UICollectionView!overridefuncviewDidLoad(){super.viewDidLoad()self.collectionView.dataSource=self}overridefuncdidReceiveMemoryWarning(){super.didReceiveMemoryWarning()// Dispose of any resources that can be recreated.}// MARK: - UICollectionViewDataSourcefunccollectionView(_collectionView:UICollectionView,cellForItemAtindexPath:IndexPath)->UICollectionViewCell{letcell=collectionView.dequeueReusableCell(withReuseIdentifier:"CustomCell",for:indexPath)as?CustomCollectionViewCell// 画像を設定 (今回はサンプルのためNoImageIconというものがあることを想定しています)cell?.imageView.image=UIImage(named:"NoImageIcon")returncell!}funccollectionView(_collectionView:UICollectionView,numberOfItemsInSectionsection:Int)->Int{return1}}