我在静态单元格中有UIPickerView
,UIPickerView
选项工作正常。然而。如果用户点击UIPickerView
外部,则会选择单元格并创建灰色背景。我想禁用用户选择单元格并突出显示灰色,但应该只能选择该单元格内的UIPickerView
。
我该怎么做?
我试过了:
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: IndexPath!) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier:"CellIdentifier", for: indexPath) as UITableViewCell
cell.selectionStyle = UITableViewCellSelectionStyle.none
return cell
}
现在静态单元格甚至无法显示。
我如何实现我想要的目标。