我在Swift中制作一个UITableview
,我想要当有人点击单元格时他会显示这个单元格的选择,当有人点击下一个单元格时,选择从第一个选择中消失并显示在下一个选择中。
示例:我点击 Cell1 - 显示此单元格的选择,当我点击 Cell2 时, Cell1 选项消失且 Cell2 现在显示选择。
希望有人可以帮助我
答案 0 :(得分:0)
使用didSelectRowAtIndexPath
方法并从中访问单元格:
func tableView(tableView: UITableView!, didSelectRowAtIndexPath indexPath: NSIndexPath!) {
//Do whatever you want with the cell
}