У меня есть UIPickerView
, и я добавляю UIToolBar
с 2 UIBarButtonItems
.UIBarButtonItem не доступен для просмотра в UIToolBar
var toolBar = UIToolbar()
toolBar.frame.origin.y = -40
toolBar.barStyle = UIBarStyle.Default
toolBar.translucent = true
toolBar.tintColor = UIColor(red: 76/255, green: 217/255, blue: 100/255, alpha: 1)
toolBar.sizeToFit()
var doneButton = UIBarButtonItem(title: "Done", style: UIBarButtonItemStyle.Bordered, target: self, action: "donePicker")
var spaceButton = UIBarButtonItem(barButtonSystemItem: UIBarButtonSystemItem.FlexibleSpace, target: nil, action: nil)
var cancelButton = UIBarButtonItem(title: "Cancel", style: UIBarButtonItemStyle.Bordered, target: self, action: "canclePicker")
toolBar.setItems([cancelButton, spaceButton, doneButton], animated: false)
toolBar.userInteractionEnabled = true
pickerView.addSubview(toolBar)
pickerView.bringSubviewToFront(toolBar)
view.bringSubviewToFront(toolBar)
Проблема заключается в том, что, когда я пытаюсь нажать на на UIBarButtonItem, это не срабатывает, она даже не признает его, он просто нажимает на ячейку под ней.
Единственная причина, я вижу это toolBar.frame.origin.y = -40. Панель инструментов находится за пределами рамки pickerview. – HMHero
Я пробовал его с y = 0, и его то же самое, только что на этот раз подбирается под ним подбирается pickerView ... –
Вы попробовали pickerView.inputAccessoryView = toolBar вместо того, чтобы добавлять его в качестве подзаголовка? – HMHero