LoginSignup
1
0

More than 5 years have passed since last update.

UICollectionViewController作っていてCustomCellのlabelにテキスト入れようとするとlabelがnilでエラー

Last updated at Posted at 2018-10-13

事象

スクリーンショット 2018-10-13 13.52.14.png

cellはあるのにtitleLabelはnil
- StoryboardでcellにreuseIdentifierは設定ずみ
- CustomCellクラスにStoryboardからlabelのリンクはきちんと行われている

Fatal error: Unexpectedly found nil while unwrapping an Optional valueが出た

解決


    override func viewDidLoad() {
        super.viewDidLoad()

        // ここいらない!
        // Register cell classes 
        // self.collectionView!.register(CheckBoxCollectionViewCell.self, forCellWithReuseIdentifier: reuseIdentifier)
    }

CocoaTouchからUICollectionViewControllerを作成しましたが、その時できるself.collectionView!.register()がいらなかったみたい

1
0
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
0