staticNSString* cellIdentifier =@"DepartparentTableCellView";
NSString* iPath = [[NSStringalloc]initWithFormat:@"%ld",(long)indexPath.row];
cellIdentifier = [cellIdentifierstringByAppendingFormat:@"%@",iPath];
UITableViewCell*cell = [tableViewdequeueReusableCellWithIdentifier:cellIdentifier];
if(!cell) {
cell = [[UITableViewCellalloc]initWithStyle:UITableViewCellStyleSubtitlereuseIdentifier:cellIdentifier];
}else{
[cell.contentView.subviewsmakeObjectsPerformSelector:@selector(removeFromSuperview)];
}