UISearchBar发布Xcode 5

时间:2014-05-18 19:08:30

标签: ios objective-c xcode uisearchbar

我遇到了UISearchBar我已经实施的问题。我的应用程序将编译并运行,但只要我点击搜索栏开始输入一个单词,它就会崩溃。如果你看到我的语法有什么问题,谁能告诉我?我想要通过我NSArray中的状态。

TableViewController.h

#import <UIKit/UIKit.h>

@interface TableViewController : UITableViewController <UISearchBarDelegate>

@property (nonatomic, strong) NSMutableArray *results;

@property (nonatomic, strong) IBOutlet UISearchBar *searchBar;

@end

TableViewController.m

#import "TableViewController.h"
#import "ViewController.h"

@interface TableViewController ()

@end

@implementation TableViewController
{
NSArray *states;
}

- (NSMutableArray *)results
{
if (!_results)
{
    _results = [[NSMutableArray alloc] init];
}
return _results;
}

- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
    // Custom initialization
}
return self;
}

- (void)viewDidLoad
{
[super viewDidLoad];

states = [NSArray arrayWithObjects:@"Alabama", @"Georgia", @"Tennessee", @"Colorado", nil];
}

- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}

- (void)searchThroughData
{
self.results = nil;

NSPredicate *resultsPredicate = [NSPredicate predicateWithFormat:@"SELF contains [search] $@", self.searchBar.text];

self.results = [[states filteredArrayUsingPredicate:resultsPredicate] mutableCopy];
}

- (void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText
{
[self searchThroughData];
}

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

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
if(tableView == self.tableView)
{
    return [states count];
}

else
{
    [self searchThroughData];
    return self.results.count;
}
}


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (!cell)
{
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault  reuseIdentifier:CellIdentifier];
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}

if(tableView == self.tableView)
{
    cell.textLabel.text = [states objectAtIndex:indexPath.row];
}

else
{
    cell.textLabel.text = self.results[indexPath.row];
}

return cell;
}

我是Objective-C的新手,很抱歉,如果这是一个简单的问题,我应该知道答案。

由于

1 个答案:

答案 0 :(得分:0)

- (void)searchThroughData方法的第一行将NSMutableArray设置为nil。这可能是问题所在。