1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

swift3 - Collection View 初歩的な点でつまづいたら確認したいこと

Last updated at Posted at 2017-04-11

こんにちわ。最近は、スプートニクの恋人っていう古い小説が好きです。 さて、Collection View ですが、テキトーに実装したら何かが足らずにCollection Viewが出ないみたいなことがあったので、備忘録のために残しておきます。それに実装の方法が人によってまちまちだと思ったので、絶対に必要な手順的な。不親切な記事で世のため人のためにならず、すみません。

手順

1, storyboardにCollectionView配置

2, CollectionViewCellにIdentifierを定義

3, クラスにUICollectionViewDelegate UICollectionViewDataSource を継承

4, @IBOutlet weak var myCollectionView: UICollectionView! みたいにしてソースコードからUIを操作できるようにする

5, データの実装


 //データの個数を返すメソッド
    func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int
    {
        return 30
    }
    
    
    //データを返すメソッド
    func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell
    {
        //コレクションビューから識別子「TestCell」のセルを取得する。
        let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "TestCell", for: indexPath as IndexPath) as UICollectionViewCell
        
        //セルの背景色をランダムに設定する。
        cell.backgroundColor = UIColor(red: CGFloat(drand48()),
                                       green: CGFloat(drand48()),
                                       blue: CGFloat(drand48()),
                                       alpha: 1.0)
        return cell
    }
    

参考

【Swift】Collection Viewの使い方。格子状にセルを並べる入れ物。

Collection View

スクリーンショット 2017-04-11 10.53.10.png
1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?