表題の通りタップ時にセルの情報を取得したいと考えています
swift
1func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath)
TableViewであれば以下のように取得できたのですがCollectionViewだとエラーが出てしまい取得することができません
swift
1 func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { 2 let cell: UITableViewCell = self.tableView(tableView, cellForRowAt: indexPath) 3 print((cell.textLabel?.text)!) 4 }
error
1Cannot call value of non-function type 'UICollectionView?'
collectoinViewの場合どのように取得すればいいのでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。