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.

I am having a sectioned UITableView with a Search Display Controller. My problem is that during a search, only rows from the first section of the Table appear in results.

My code is below:

First in the ViewDidLoad I get the sections and I create the array of the search results with a capacity equal to the total count of records in my db table.

- (void)viewDidLoad

{
[super viewDidLoad];

FMDatabase *db = [FMDatabase databaseWithPath:[Utility getDatabasePath]]; 

[db open];

 //Loading the sections for the TableView

self.sectionsarray =[[NSMutableArray alloc] init];

FMResults *results = [db executeQuery:@"SELECT distinct section FROM articles where  order by section"];

while([results next]) 
{
    NSString *sectioname = [results stringForColumn:@"section"];

    [sectionsarray addObject:sectioname];

}

    [db close];


//Creating the Array for the search results

self.searchResults = [NSMutableArray arrayWithCapacity:[db intForQuery: [NSString stringWithFormat:@"SELECT count(id) as rowscount FROM Articles"]]];

if (self.savedSearchTerm)
{

    [self.searchDisplayController.searchBar setText:savedSearchTerm];

    self.savedSearchTerm = nil;
}

[self.tableView reloadData];

}

The code below is responsible for doing the actual search. It looks for the search term in any part of a record called ArticleTags in the array that holds the data for the UITableView.

- (void)handleSearchForTerm:(NSString *)searchTerm

{



// Update the filtered array based on the search text


[self.searchResults removeAllObjects];

for (Article *searchplace in masterplacesarray)
{



 NSRange range = [searchplace.articletags rangeOfString:searchTerm options:(NSCaseInsensitiveSearch|NSDiacriticInsensitiveSearch)];
    if (range.location != NSNotFound) {
        [self.searchResults addObject:searchplace];
    }


}
}

The following calculates the number of sections in the table view

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView

{

if (tableView == [[self searchDisplayController] searchResultsTableView])
return 1;
else {
return [sectionsarray count];
}

}

And this the number of rows for each section

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section

{
if (tableView == [[self searchDisplayController] searchResultsTableView])
    return  [[self searchResults] count];
else
{
    FMDatabase *db = [FMDatabase databaseWithPath:[Utility getDatabasePath]];

    [db open];


    NSUInteger rowscountforsection = [db intForQuery: [NSString stringWithFormat:@"SELECT count(id) as rowscount FROM Articles where section='%@'",[self.sectionsarray objectAtIndex:section]]];   


    [db close];

    return rowscountforsection;
}
}

And this sets the title of each section of the tableview

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
    if (tableView == [[self searchDisplayController] searchResultsTableView])
        return @"Search Results";
        else

            return [self.sectionsarray objectAtIndex:section];

}

This is where I create the tableview's cells section by section. The masterplacesarray is the array that holds the data for the uitableview.

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

{
static NSString *CellIdentifier = @"PlacesCell";

UITableViewCell *cell = [self.mainTableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}

// Configure the cell...


FMDatabase *db = [FMDatabase databaseWithPath:[Utility getDatabasePath]]; 

[db open];

NSString *sectioname = [self.sectionsarray objectAtIndex:indexPath.section];    

self.masterplacesarray = [[NSMutableArray alloc] init];

FMResultSet *resultsdata = [db executeQuery:[NSString stringWithFormat:@"SELECT ArticleTitle, ArticlePreview, id, ArticleTags FROM Articles where section='%@'",sectioname]];   


while([resultsdata next]) 
{
    Article *articledata = [[Article alloc] init];

    articledata.articleid = [resultsdata stringForColumn:@"id"];
    articledata.articletitle = [resultsdata stringForColumn:@"ArticleTitle"];
    articledata.articlepreview = [resultsdata stringForColumn:@"ArticlePreview"];
    articledata.articletags = [resultsdata stringForColumn:@"ArticleTags"];



    [masterplacesarray addObject:articledata];

}

[db close];




Article *placecell = [self.masterplacesarray objectAtIndex:indexPath.row];

if (tableView == [[self searchDisplayController] searchResultsTableView])
{
    placecell = [self.searchResults objectAtIndex:indexPath.row];
    cell.tag = 666;
}
else
{
    placecell = [self.masterplacesarray objectAtIndex:indexPath.row];
}


UILabel *childIDLabel = (UILabel *)[cell viewWithTag:999];
childIDLabel.text = placecell.articleid;
UILabel *titleLabel = (UILabel *)[cell viewWithTag:100];
titleLabel.text = placecell.articletitle;
UILabel *previewLabel = (UILabel *)[cell viewWithTag:101];
previewLabel.text = placecell.articlepreview;
// UIImageView *imageview = (UIImageView *)[cell viewWithTag:102];
// [imageview setImage:[UIImage imageNamed:peoplecell.articlethumb]];


return cell;
}
share|improve this question
What is variable self.placesarray? may be you should use masterplacesarray for each row. Please, provide full code of tableview delegates. – NeverBe Mar 18 '12 at 16:23
Hi and thanks for your reply. self.placesarray was a typo for self.masterplacesarray. I have corrected the code here. This was not was creating my problem, because in my actual project placesarray does not exist. I have also updated my question with the rest of the code of the uitableview delegate – Tassos Voulgaris Mar 18 '12 at 20:24
I guess you have problem in - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath because you changed your global data model self.masterplacesarray. On my mind you should have 2 data models, masterPlacesArray and filteredMasterPlacesArray. And you in table only filtered model. – NeverBe Mar 19 '12 at 9:26
Do you mean to have a second data model that holds all of the data of my db table, and just use this for search? – Tassos Voulgaris Mar 19 '12 at 13:18
I means two models: all data and filtered data. – NeverBe Mar 19 '12 at 13:19
show 3 more comments

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.