LoginSignup
5
2

More than 5 years have passed since last update.

iOS11でUIBarButtonの位置がずれる問題

Posted at

iOS10以下とiOS11ではUIBarButtonがずれてしまう。。

今までh16ptだったところが8ptsになってしまったようです。

一旦は以下のようにforStateにUIControlStateNormalで対応

if (@available(iOS 11.0, *)) {
        [barbutton setTitle:@"  " forState:UIControlStateNormal];
}

参考:
https://forums.developer.apple.com/thread/80075

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