StoryboardのWarningと対処方法


はじめに

XcodeでStoryboardのWarningを消したときのメモです。

Push segues are deprecated

warning: Deprecated: Push segues are deprecated since iOS 8.0

セグウェイの種類がPushになっているためです。
Showに変更します。

Constraint referencing items turned off in current configuration.

Constraint referencing items turned off in current configuration. Turn off this constraint in the current configuration.

制約が参照しているビューがinstalledをオフにされているためです。
制約自体のinstalledをオフにします。

Plain Style unsupported

Unsupported Configuration: Plain Style unsupported in a Navigation Item

複数のスタイルが選べたものが、iOS7でUBarButtonItemStyleDoneに集約されたためです。
ナビゲーションアイテムのボタンをStyleについてDoneにします。