The application is Crashing on UItableCellSection long press

前端 未结 2 1227
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    static NSString *simpleTableIdentifier = @\"cell\";

    simpleCell = [         


        
相关标签:
2条回答
  • 2021-01-19 19:09

    you might want to try

    cell.contentView.userInteractionEnabled = NO; had the same issue. disabling userInteraction resolved for me .

    0 讨论(0)
  • 2021-01-19 19:32

    I have same issue and I solved it using UIView *objView in place of using CustomTableCell.

    Try this will help.

    0 讨论(0)
提交回复
热议问题