UITextField内のUIPickerViewのUIBarButtonItemのセンタリングってできますか?
お世話になります。
表題の通りです。
UITextFieldをタップした時、UIPickerViewが下から出てきた時に、「完了」とか「Done」とかの終了ボタンを設置するのですが、これって画面(View)の真ん中に表示することはできますか?
現在のコードは下記の通りで、左隅によっている状態です。
できれば真ん中に配置がしたいのですが、お解りになる方がいらっしゃいましたらご教授願います。
textField.inputView = pickerView
var toolBar: UIToolbar!
toolBar = UIToolbar(frame: CGRectMake(0, self.view.frame.size.height/6, self.view.frame.size.width, 40.0))
toolBar.layer.position = CGPoint(x: self.view.frame.size.width/2, y: self.view.frame.size.height-20.0)
toolBar.barStyle = .BlackTranslucent
toolBar.tintColor = UIColor.whiteColor()
toolBar.backgroundColor = UIColor.blackColor()
let toolBarBtn = UIBarButtonItem(title: "完了", style: .Done, target: self, action: #selector(ViewController3.tappedToolBarBtn(_:)))
toolBarBtn.tag = 1
toolBar.items = [toolBarBtn]
textField.inputAccessoryView = toolBar