Button in UITableViewCell not responding under ios 7

前端 未结 23 1784
刺人心
刺人心 2020-11-30 01:16

I have one tableview and each cell contains one button. It\'s working pretty well all iOS versions but 7. I don\'t know what\'s going on. The cell is constructed in one xib

23条回答
  •  广开言路
    2020-11-30 01:27

    The solution to this problem is;

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {    
    cell.bringSubviewToFront(cell.YOUR_UIView)    
    }
    

    This works for me.

提交回复
热议问题