The application is Crashing on UItableCellSection long press

前端 未结 2 1228
-(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 .

提交回复
热议问题