I would like to show an alert that contains an UIPickerView inside. Is it possible ? Any idea to do it ?
Thank you very much!
UPDATE
Finally I used this fantastic library to make cool custom alerts:
I would like to show an alert that contains an UIPickerView inside. Is it possible ? Any idea to do it ?
Thank you very much!
UPDATE
Finally I used this fantastic library to make cool custom alerts:
Try this:
let alertView = UIAlertController(
title: "Select item from list",
message: "\n\n\n\n\n\n\n\n\n",
preferredStyle: .alert)
let pickerView = UIPickerView(frame:
CGRect(x: 0, y: 50, width: 260, height: 162))
pickerView.dataSource = self
pickerView.delegate = self
// comment this line to use white color
pickerView.backgroundColor = UIColor.lightGray.withAlphaComponent(0.2)
alertView.view.addSubview(pickerView)
let action = UIAlertAction(title: "OK", style: UIAlertActionStyle.default, handler: nil)
alertView.addAction(action)
present(alertView, animated: true, completion: { _ in
pickerView.frame.size.width = alertView.view.frame.size.width
})