can't click UIButton inside a cell in UITableview

前端 未结 13 1832
生来不讨喜
生来不讨喜 2021-02-05 09:51

searched already some possible fixes but all did not solve mine.

i keep clicking the cell in the uitableview rather than the buttons inside it.

here is my code:

13条回答
  •  南方客
    南方客 (楼主)
    2021-02-05 10:22

    Update swift 4.2

    in func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell

    add it : cell.buttonCheckBox.isUserInteractionEnabled = false

    OR, uncheck User Interaction Enabled inspector

    Now you can select the button as well as a cell. This works for me :)

提交回复
热议问题