super.viewWillAppear(animated)は自分で書く必要あり。
override func viewWillAppear(_ animated: Bool) { super.viewWillAppear(animated) }
投稿日:
super.viewWillAppear(animated)は自分で書く必要あり。
override func viewWillAppear(_ animated: Bool) { super.viewWillAppear(animated) }
執筆者:swift
関連記事
MVCデザインパターンとは プログラムをMVCに分けて構成する。 ・Model ・View ・Controller それぞれの役割 Model: 機能(処理を実行) Controller: Viewに …
collectionViewCellにラベルを設置する2つの方法
collectionViewCellの中にLabelを配置したい。 1. StoryBoardで設置する方法 新たなファイルを作らず簡単に設置できる。 cell内にLabel配置→Tagを1にする→コ …
StoryBoadのAssistantEditorが開かない時の対処法
StoryBoadのアシスタントエディターが”No Assistant Results”と表示され、開かなくなった。 再起動をしても元に戻らない。 解決策 別のプロジェクトファ …