LoginSignup
0
1

More than 3 years have passed since last update.

StoryboardとXibと繋げる方法

Posted at

Xibを作成

Viewも一緒に作成してください。

スクリーンショット 2021-04-16 12.10.40.png

Class名を統一させてください。

スクリーンショット 2021-04-16 12.11.56.png

VeiwController側でxibを呼び出します。
そしてViewControllerでxibを追加します

    let view: UIView = UINib(nibName: "buttonView", bundle: nil).instantiate(withOwner: self, options: nil).first as! UIView
            self.view1.addSubview(view)
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