LoginSignup
2
1

More than 1 year has passed since last update.

iOS11でのUIBarButtonItemのサイズについて

Last updated at Posted at 2017-12-07

問題

iOS11においてUIBarButtonItemのレイアウト設定がautolayoutに対応してしまい、指定したサイズで表示できない

解決方法

Setimageで画像をセットした後に要求バージョンの指定をし、 バージョンに見合った処理を書く


if #available(iOS 9.0, *) {
    leftbtn.widthAnchor.constraint(equalToConstant: 44).isActive = true
    leftbtn.heightAnchor.constraint(equalToConstant: 23).isActive = true
}

要求バージョンについて

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