For example we have UIPickerView with 2 items: 'Item1', 'Item2'. User selected 'Item1'. This method is called
public func pickerView(_ pickerView: UIPickerView, titleForRow row: Int, forComponent component: Int) -> String? {}
But when user again selected that item 'Item1' then that method is not called.
Question: how to define that selected item ('Item1') was selected again on UIPickerView?