0
2

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 3 years have passed since last update.

Storyboardの設定項目

Posted at

趣味でiOSアプリ開発をかじっていた自分が、改めてiOS開発を勉強し始めた際に、曖昧に理解していたところや知らなかったところをメモしています。いつか書き直します。

参考文献

この記事は以下の書籍の情報を参考にして執筆しました。4章を読んでの内容になります。

##起動時のstoryboardを設定

GUIで設定
プロジェクトファイルのMain Interfaceでstoryboardを指定する。
下記のように設定してあるとMain.storyboardファイルが読み込まれる。

image.png

##storyboardで開始時のビューを設定する方法
矢印をドラッグして持ってくるか、is initial View Controller にチェックを入れる。

image.png

##stackボタン
部品を複数選択して下記のボタンを押すとstackViewを作ることができる。
image.png

##親子関係にあるビューの制約
子ビューから親ビューへCtrol+ドラッグした時に追加できる制約で、親子間での比率など制約を設定できる。

image.png

##xibファイ ルの呼び出し
xibファイルを作成。
Viewを作って背景色を青にする。
image.png

####呼び出したい箇所で読み込む。
(guardでnilのチェックをしているが他の方法でもいい)

    // xibファイルの呼び出し
    guard let subView = Bundle.main.loadNibNamed("Xibファイル名", owner: nil, options: nil)?.first as? UIView else { return }
    self.view.addSubview(subView)

####カスタムクラスのビューに指定し、カスタムクラスを呼び出す。
xibファイルに属性を追加したりできる。

XibView.swift
import UIKit

class XibView: UIView {
  override init(frame: CGRect){
    super.init(frame: frame)
    loadNib()
  }
  
  required init(coder aDecoder: NSCoder) {
    super.init(coder: aDecoder)!
    loadNib()
  }
  
  func loadNib(){
    // xibファイル読み込み
    guard let view = Bundle.main.loadNibNamed("View2", owner: nil, options: nil)?.first as? UIView else { return }
    view.frame = self.bounds
    self.addSubview(view)
  }
  
}

使い方例

    let subView = XibView(frame: CGRect(x: 50, y: 50, width: 400, height: 700))
    self.view.addSubview(subView)

##storyboard分割
Storyboard Referenceを用いてstoryboardを分割し、参照することができる。
image.png

分割したい範囲をまとめて選択し、「Editor」→「Reference to Stroryboard」を選択し、新しいstoryboardを名前をつけて保存。
image.png
選択した範囲だけで構成される storyboardができた。
image.png
分割元の方では参照するstoryboardが表示されている。
image.png

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?