-2
Swift 3でUIToolbarをどのように作成しますか?ほとんどのアプリのように、左のアクションと右のアクションと中央のタイトルが必要です。また、バックアクションの矢印やスタックのないナビゲーションコントローラのように見えます。Swift 3でUIToolbarを作成する
のコードは次のようなものである:ここでは
let buttona = UIBarButtonItem(title: "Buttona", style: .plain, target: self, action: #selector(buttonaToolbar(sender:)));
let buttonb = UIBarButtonItem(title: "Buttonb", style: .plain, target: self, action: #selector(buttonbToolbar(sender:)));
let title = UILabel();
toolbar = UIToolbar(frame: CGRect(x: 0, y: 0, width: self.view.bounds.width, height: 44));
私は戻ってくるスタックを必要としません – cdub
あなたが組み込みのメソッドUINavigationControllerのカスタムビューで十分ですか? – solenoid
@matt私はあなたの助言に従った – cdub