Unrecognised selector sent to instance uitableview

Posted by ct2k7 on Stack Overflow See other posts from Stack Overflow or by ct2k7
Published on 2010-04-06T03:57:13Z Indexed on 2010/04/06 4:03 UTC
Read the original article Hit count: 342

Filed under:

I'm getting error: Unrecognised selector sent to instance, upon inspection, I see there is an issue in this section of code, and more specifically: [self.tableView insertSubview:ovController.view aboveSubview:self.parentViewController.view];

- (void) searchBarTextDidBeginEditing:(UISearchBar *)theSearchBar {


 if(searching)
  return;

 //Add the overlay view.
  ovController = [[OverlayViewController alloc] initWithNibName:@"OverlayView" bundle:[NSBundle mainBundle]];

  CGFloat yaxis = self.navigationController.navigationBar.frame.size.height;
  CGFloat width = self.view.frame.size.width;
  CGFloat height = self.view.frame.size.height;

  //Parameters x = origion on x-axis, y = origon on y-axis.
  CGRect frame = CGRectMake(0, yaxis, width, height);
  ovController.view.frame = frame; 
  ovController.view.backgroundColor = [UIColor grayColor];
  ovController.view.alpha = 0.5;

  ovController.rvController = self;

  [self.tableView insertSubview:ovController.view aboveSubview:self.parentViewController.view];

 searching = YES;
 letUserSelectRow = NO;
 //self.tableView.scrollEnabled = NO;

 }

Looks like there's an issue with tableview?

© Stack Overflow or respective owner

Related posts about iphone