【XCode】「warning: Unsupported Configuration: Plain Style unsupported in a Navigation Item」が発生したときの対策
目次
原因
Naviagation Barを使用していて、自分でUIBarButtonItemを使用しているときに発生しました。
UIBarButtonItemsの設定が古いままですという警告です。
これは、互換性維持のために、iOS7以前に使用されていた、ボタンスタイルが適応されている場合に表示される警告になります。
3種類のスタイルが設定可能になっていますが現在は、Done
のみ使用が推奨されています。
- Plan : 枠線が無いボタン(今は使われていない)
- Bordered : 枠線があるボタン(今は使われていない)
- Done : 青いボタン
対策
StyleをDone
に変更する
【XCode】「warning: Unsupported Configuration: Plain Style unsupported in a Navigation Item」が発生したときの対策