ストーリーボード インターフェイス ビルダー内のテーブル ビューでナビゲーション バーを一番上に設定するにはどうすればよいですか? 出来ますか?
テーブル ビューにナビゲーション バーを追加すると、レコードの下にのみ表示されます。
Xcode 4.3.2 を使用しています
ストーリーボード インターフェイス ビルダー内のテーブル ビューでナビゲーション バーを一番上に設定するにはどうすればよいですか? 出来ますか?
テーブル ビューにナビゲーション バーを追加すると、レコードの下にのみ表示されます。
Xcode 4.3.2 を使用しています
You should not add the navigation bar yourself. Interface builder will do that automatically when a scene is embedded into a navigation controller or part of the navigation stack. So if your tableview is the root controller choose your scene and then go to:
Editor > Embed in > Navigation Controller
Otherwise the navigation bar will be added automatically when you connect a segue from another controller (that is part of the stack) to your tableview controller.