0

我正在使用以下函数使用 SearchDisplayController 进行搜索

- (void)handleSearchForTerm:(NSString *)searchTerm{

[self.searchResults removeAllObjects]; // First clear the filtered array.

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


[db open];


FMResultSet *results = [db executeQuery: [NSString stringWithFormat:@"SELECT * FROM periods where (searchstartyear <= %@)  AND (searchendyear >= %@)", searchTerm, searchTerm]];

    NSMutableArray *array = [[NSMutableArray alloc] init ];
    [array removeAllObjects];
    while ([results next]) {
        Periods *searchPeriod = [[Periods alloc] init];
        searchPeriod.periodname = [results stringForColumn:@"PeriodName"];
        searchPeriod.startyear = [results stringForColumn:@"StartYear"];
        searchPeriod.endyear = [results stringForColumn:@"EndYear"];
        searchPeriod.thumb = [results stringForColumn:@"Thumb"];
        searchPeriod.childid = [results stringForColumn:@"ChildID"];
        [array addObject:searchPeriod];           
    }
    [self.searchResults addObject:array];


[db close];}    

Periods是一个对象

#import <UIKit/UIKit.h>

@interface Periods : NSObject

@property (nonatomic,strong) NSString *periodname;
@property (nonatomic,strong) NSString *startyear;
@property (nonatomic,strong) NSString *endyear;
@property (nonatomic,strong) NSString *thumb; 
@property (nonatomic,strong) NSString *childid;


@end

执行以下代码时,我收到 NSInvalidArgumentException - 无法识别的选择器发送到实例:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"PeriodsCell";

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

    // Configure the cell...

    if (tableView != [[self searchDisplayController] searchResultsTableView])
    {

        NSMutableArray *array = [periodsdataarray objectAtIndex:indexPath.section];
        NSMutableDictionary *dictionary = [array objectAtIndex:indexPath.row];




        UILabel *childIDLabel = (UILabel *)[cell viewWithTag:999];
        childIDLabel.text = [dictionary valueForKey:@"ChildID"];
        UILabel *titleLabel = (UILabel *)[cell viewWithTag:100];
        titleLabel.text = [dictionary valueForKey:@"PeriodName"];


        UILabel *previewLabel = (UILabel *)[cell viewWithTag:101];
        previewLabel.text = [NSString stringWithFormat:@"%@ - %@",[dictionary valueForKey:@"StartYear"],[dictionary valueForKey:@"EndYear"]];
        UIImageView *imageview = (UIImageView *)[cell viewWithTag:102];
        [imageview setImage:[UIImage imageNamed:[dictionary valueForKey:@"Thumb"]]];
    }
    else
    {
        Periods *periodcell = [self.searchResults objectAtIndex:indexPath.row];

        cell.tag = 666;
        UILabel *childIDLabel = (UILabel *)[cell viewWithTag:999];
        childIDLabel.text = periodcell.childid;
        UILabel *titleLabel = (UILabel *)[cell viewWithTag:100];
        titleLabel.text = periodcell.periodname;


        UILabel *previewLabel = (UILabel *)[cell viewWithTag:101];
        previewLabel.text = [NSString stringWithFormat:@"%@ - %@",periodcell.startyear,periodcell.endyear];
        UIImageView *imageview = (UIImageView *)[cell viewWithTag:102];
        [imageview setImage:[UIImage imageNamed:periodcell.thumb]];


    }

    return cell;
}

...更具体地说,当执行此行时:

childIDLabel.text = periodcell.childid;

我做错了什么?

4

1 回答 1

0

我犯的错误是在 handleSearchForTerm 函数上。

我使用 NSMutableArray *array 来保存 Periods 对象的值,然后将该数组添加到我的 searchResults 数组中(期望 searchResults 保存 Periods)。解决方案很简单,只需将句点直接添加到我的 searchResults 数组并完全放弃数组......

于 2013-10-23T07:45:22.513 回答