search

Home  >  Q&A  >  body text

ios - tableviewCell怎么处理子控件的事件响应

我写了一个tableview,其中有些cell在点击的适合要处理cell里面的子控件的响应事件,但是好像每次都被tableviewCell给拦截了,不知道如何解决

下图中的优惠row中每次点击 整个row都变灰,cell里的每个button我都添加了点击时间,点击的时候完全没有响应

巴扎黑巴扎黑2782 days ago773

reply all(2)I'll reply

  • PHP中文网

    PHP中文网2017-04-17 17:07:46

    In iOS, touch events are passed layer by layer, and there is no interference like gesture operations! Only the UIView at the top of the contentView of UITableViewCell will respond to touch events. Therefore, you can use the view hierarchy in UI debug to check the layout of subviews to see if there is any overlay

    reply
    0
  • 天蓬老师

    天蓬老师2017-04-17 17:07:46

    Delegate or NSNotification

    reply
    0
  • Cancelreply