I am using a SearchDisplayCOntroller to show search results. The results are shown fine when I make tableVIew cell in a traditional manner like this.

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        if (cell == nil) {
            cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
        }
        cell.textLabel.text=[searchResults objectAtIndex:indexPath.row];
        return cell;

But i get Assertion Failure with this custom cell code

  static  NSString *cellId    =   @"Event Cell";
    VenueCell *cell     =   [[VenueCell alloc]init];
    cell= [tableView dequeueReusableCellWithIdentifier:cellId];
    event               =   [eventsArray objectAtIndex:indexPath.row];
    cell.imgView.image  =   [imagesArray objectAtIndex:indexPath.row];
    cell.lblName.text   =   event.title;
    cell.lblDesc.text   =   [venueNamesArray objectAtIndex:indexPath.row]; 
    return cell;

This custom cell code works fine when I am showing the default tableView Plz Help

link|improve this question

80% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.