4
Я новичок в быстры, и я пытаюсь сделать UIAlertContoller
с PickerView
, но у меня есть проблемы с Buttones, Вот фотобыстро UIAlertController с помощью кнопки действия pickerView остаться
, когда я пытается изменить ограничение кнопки остаться до я прочитал много ответов здесь, но я не нашел solotuin
Вот мой код:
func distance(){
let editRadiusAlert = UIAlertController(title: "Choose distance", message: "", preferredStyle: UIAlertControllerStyle.alert)
let pickeViewFrame: CGRect = CGRect(x: 0, y: 0, width: 250, height: 300)
let pickerViewRadius: UIPickerView = UIPickerView(frame: pickeViewFrame)
pickerViewRadius.delegate = self
pickerViewRadius.dataSource = self
editRadiusAlert.view.addSubview(pickerViewRadius)
editRadiusAlert.addAction(UIAlertAction(title: "Done", style: UIAlertActionStyle.default,handler:nil))
editRadiusAlert.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.cancel, handler: nil))
editRadiusAlert.view.addConstraint(NSLayoutConstraint(item: editRadiusAlert.view, attribute: NSLayoutAttribute.height, relatedBy: NSLayoutRelation.equal, toItem: nil, attribute: NSLayoutAttribute.notAnAttribute, multiplier: 1, constant: self.view.frame.height * 0.5))
self.present(editRadiusAlert, animated: true, completion: nil)
}
спасибо вам очень !! –
Я пытаюсь получить обратную связь, но у меня нет репутации –
@SaharVanunu Добро пожаловать, помогите :) –