LoginSignup
0
1

More than 3 years have passed since last update.

【iOS】 ReactorKitでStoryboardを使う方法

Posted at

経緯

ReactorKitを使っているプロジェクトでStoryboardでレイアウトした画面を表示させたら画面に何も表示されなかったので原因を調べてみた

対応方法

最初はbind内でloadView()を呼んでViewの生成を行っていたがStoryboardを使っているのにloadView()を呼びたくないとおもい公式ドキュメントを調べてみたらそれ用のプロトコルが用意されていた

func bind(reactor: Reactor) {
  loadView()
}

以下のようにStoryboardViewプロトコルを使用するとViewの生成が行われ画面が表示された

class MyViewController: UIViewController, StoryboardView {
  func bind(reactor: MyViewReactor) {
    // this is called after the view is loaded (viewDidLoad)
  }
}
0
1
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
0
1