Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My application works fine when i Click on any Cell of UITableview Before doing Search in UISearchbar.as my Sreenshot show below.

enter image description here

But When i complete Search in UISearchBar now when i click on Cell in UITableView then it Crash as my screen shot show Below

enter image description here

it Gives me following Error in NSLog Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid update: invalid number of rows in section 0. The number of rows contained in an existing section after the update (10) must be equal to the number of rows contained in that section before the update (1), plus or minus the number of rows inserted or deleted from that section (1 inserted, 1 deleted).' My Code is Given Below

  #import "ViewController.h"

 #define NORMAL_TABLE_CELL_HEIGHT   60
 #define EXPANDED_TABLE_CELL_HEIGHT 160

 @interface ViewController ()

@end

@implementation ViewController
@synthesize tableView;
NSArray *arrayForA;
NSString *str;
-(void) viewWillAppear:(BOOL)animated{
    NSLog(@"mystring=----  %@",[de getChageWord]);
    [super viewWillAppear:YES];
   str=[NSString stringWithFormat:@"%@",[de getChageWord]];
          [self setLanguageType:[de getChageWord]];

 }

- (void)viewDidLoad
{
    [super viewDidLoad];
    arrayForA = [[NSArray alloc] init];
    listOfItems = [[NSMutableArray alloc] init];
    NSDictionary *countriesToLiveInDict = [NSDictionary dictionaryWithObject:arrayForA forKey:@"Countries"];
    [listOfItems addObject:countriesToLiveInDict];

    copyListOfItems = [[NSMutableArray alloc] init];

    //Add the search bar
    //self.tableView.tableHeaderView = searchBar;
    searchBar.autocorrectionType = UITextAutocorrectionTypeNo;

    searching = NO;
    letUserSelectRow = YES;

    self.navigationController.navigationBarHidden = YES;
    nextView = [[NextViewController alloc]init];
    isCanSmall = FALSE;
    // 확장 셀 변수 초기화
    nExpandedTableCellRowIndex = -1;
    de = [[UIApplication sharedApplication]delegate];

    [super viewDidLoad];
    [self setLanguageType:@"A"];

    }

  -(void) setLanguageType:(NSString *)type{
   nExpandedTableCellRowIndex = -1;
    NSString *path = [[NSBundle mainBundle] pathForResource:@"Movies" 
                                                     ofType:@"plist"];

    NSDictionary *dic = [[NSDictionary alloc] initWithContentsOfFile:path];
    arrayForA = (NSArray *)[dic objectForKey:str];
    mydataArray = [[dic objectForKey:type]retain];
    [tableView reloadData];

    [dic release];

}

//////////테이블 뷰 관련 /////////////
#pragma mark -
#pragma mark Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return 1;
}


- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    //return [mydataArray count];
    if (searching)
        return [copyListOfItems count];
    else {

        return [arrayForA count];
    }
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
    if( indexPath.row == nExpandedTableCellRowIndex )
        return EXPANDED_TABLE_CELL_HEIGHT;
    else
        return NORMAL_TABLE_CELL_HEIGHT;    
}

// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView1 cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    NSString *CellIdentifier;
    if( indexPath.row == nExpandedTableCellRowIndex )
        CellIdentifier = @"ExtendCell";
    else 
        CellIdentifier = @"NormalCell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];



    if (cell == nil)
    {
        NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"Cells" owner:self options:nil];
        for (id oneObject in nib)
        {
            //2010.12.20 by Xenos - Start 
            if (indexPath.row == nExpandedTableCellRowIndex && [oneObject isMemberOfClass:[ExtendCell class]])
                cell = (UITableViewCell *)oneObject;

            else if ( indexPath.row != nExpandedTableCellRowIndex && [oneObject isMemberOfClass:[NormalCell class]])
                cell = (UITableViewCell *)oneObject;
             //2010.12.20 by Xenos - End 
        }
    }

    NSString *plistMessage;

    if (searching)
        plistMessage = [copyListOfItems objectAtIndex:[indexPath row]];
    else
        plistMessage = [arrayForA objectAtIndex:[indexPath row]];

    NSArray *arr = [plistMessage componentsSeparatedByString:@"*"];

    NSString *message = [arr objectAtIndex:0];
    NSString *animal = [arr objectAtIndex:1];
    NSString *soundUrl = [arr objectAtIndex:2];

    if( [CellIdentifier isEqualToString:@"ExtendCell"] )
    {
        ExtendCell *exCell = (ExtendCell *)cell;

        exCell.label1.text = message;
        exCell.labelAnimal.text = animal;
        exCell.labelURL.text = soundUrl;
        [exCell setParent:self];


    }
    else {

        NormalCell *norCell = (NormalCell *)cell;       
        norCell.label1.text =  message;
    }


    return cell;    


}

-(void)naviMove:(NSString*)srtTitle URL:(NSString*)url cellName:(NSString*)cellName{

    [self.navigationController pushViewController:nextView animated:YES];
    [nextView setName:srtTitle setURL:url setCellName:cellName];

}


#pragma mark -
#pragma mark Table view delegate


- (void)tableView:(UITableView *)tableView1 didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

            int nLastExpanedeTableCellRowIndex = nExpandedTableCellRowIndex;
        nExpandedTableCellRowIndex = indexPath.row;

        // 같은 셀을 클릭했을때 축소하도록 설정 
        if( nLastExpanedeTableCellRowIndex == nExpandedTableCellRowIndex ){


            [tableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathForRow:nLastExpanedeTableCellRowIndex inSection:0]] withRowAnimation:UITableViewRowAnimationNone];
            nLastExpanedeTableCellRowIndex = nExpandedTableCellRowIndex = -1;


        }

        // 확장된 셀 reload
        [tableView beginUpdates];
        if( nLastExpanedeTableCellRowIndex >= 0 ){// 이미 확장된 셀이 있을때, 줄인다. - 2010.12.26 by Xenos
            [tableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:[NSIndexPath indexPathForRow:nLastExpanedeTableCellRowIndex inSection:0]] withRowAnimation:UITableViewRowAnimationNone];
        }

        [tableView reloadRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationNone];
        [tableView endUpdates];
    // 확장된 셀 지정
    //}
}
- (NSIndexPath *)tableView :(UITableView *)theTableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    if(letUserSelectRow)
        return indexPath;
    else
        return nil;
}
#pragma mark -
#pragma mark Search Bar 

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

    [searchBar setAccessibilityLanguage:@"English"];

    if(searching)
        return;

    searching = YES;
    letUserSelectRow = NO;
    self.tableView.scrollEnabled = NO;
                                               initWithBarButtonSystemItem:UIBarButtonSystemItemDone 
                                               target:self action:@selector(doneSearching_Clicked:)] autorelease];*/
}

- (void)searchBar:(UISearchBar *)theSearchBar textDidChange:(NSString *)searchText {

    //Remove all objects first.
    [copyListOfItems removeAllObjects];

    if([searchText length] > 0) {

        //[ovController.view removeFromSuperview];
        searching = YES;
        [self searchTableView];

    }
    else {

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

        searching = NO;
    }

    [self.tableView reloadData];
}

- (void) searchBarSearchButtonClicked:(UISearchBar *)theSearchBar
{
    [self searchTableView];
    [searchBar resignFirstResponder];
}

- (void)searchBarCancelButtonClicked:(UISearchBar *) searchBar
{
    searching = NO;
    letUserSelectRow = YES;
    self.tableView.scrollEnabled = YES;


    [searchBar resignFirstResponder];

}

- (void) searchTableView
{
    NSString *searchText = searchBar.text;
    //NSLog( @"string=%@",searchText);
    NSMutableArray *searchArray = [[NSMutableArray alloc] init];

    NSPredicate *predicate = [NSPredicate predicateWithFormat:@"SELF like[c] %@",[NSString stringWithFormat:@"%@*",searchBar.text]];
    NSLog( @"string=%@",predicate);
    [copyListOfItems addObjectsFromArray:[mydataArray filteredArrayUsingPredicate:predicate]];


    [searchArray release];
    searchArray = nil;
}

- (IBAction) doneSearching_Clicked:(id)sender {

    searchBar.text = @"";
    [searchBar resignFirstResponder];

    letUserSelectRow = YES;
    searching = NO;
    self.navigationItem.rightBarButtonItem = nil;
    self.tableView.scrollEnabled = YES;

    [self.tableView reloadData];
}

- (void)dealloc {

    //[ovController release];
    [copyListOfItems release];
    [searchBar release];
    [listOfItems release];
    [super dealloc];
}

@end

Any help will be appriated.Thanx

share|improve this question
1  
The error is pretty clear there, your method returns the wrong number of rows in your tableView. More specifically, you need to look into this method: - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section; Try looking into what are your arrays containing at the time that method gets called. – Adis Oct 19 '12 at 12:35

closed as too localized by Filip Radelic, skolima, mattytommo, ChrisF, MartinStettner Oct 21 '12 at 22:20

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.