Недопустимый тип аргумента для унарного выражения - PullRequest
4 голосов
/ 01 апреля 2011

У меня есть эта программа с tableView в качестве моего первого представления. Я также реализовал (или, по крайней мере, попытался) панель поиска в верхней части представления. Использовали несколько часов для поиска решения, но без положительных результатов.

#import "FirstViewController.h"
#import "NSDictionary-MutableDeepCopy.h"


@implementation FirstViewController

@synthesize listData, table, search, allNames, names, keys;

#pragma mark -
#pragma mark Custom Methods 

- (void)resetSearch {
    NSMutableDictionary *allNamesCopy = [self.allNames mutableDeepCopy];
    self.names = allNamesCopy;
    [allNamesCopy release];
    NSMutableArray *keyArray = [[NSMutableArray alloc] init];
    [keyArray addObjectsFromArray:[[self.allNames allKeys]
                                   sortedArrayUsingSelector:@selector(compare:)]];
    self.keys = keyArray;
   [keyArray release];
}

-(void)handleSearchForTerm:(NSString *)searchTerm {
    NSMutableArray *sectionsToRemove = [[NSMutableArray alloc] init];
    [self resetSearch];

    for (NSString *key in self.keys) {
        NSMutableArray *array = [names valueForKey:key];
        NSMutableArray *toRemove = [[NSMutableArray alloc] init];
        for (NSString *name in listData) {
            if ([name rangeOfString:searchTerm
                options:NSCaseInsensitiveSearch].location == NSNotFound)
                [toRemove addObject:name];
        }

        if ([array count] == [toRemove count])
            [sectionsToRemove addObject:key];

        [array removeObjectsInArray:toRemove];

        [toRemove release];

    }
    [self.keys removeObjectsInArray:sectionsToRemove];
    [sectionsToRemove release];
    [table reloadData];

}


- (void)viewDidLoad {    

    NSString *path = [[NSBundle mainBundle] pathForResource:@"sortednames" ofType:@"plist"];
    NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:path];

    self.names = dict;
    self.allNames = dict;

    [dict release];

    [self resetSearch];
    [table reloadData];
    [table setContentOffset:CGPointMake(0.0, 44.0)animated:NO];

    self.parentViewController.view.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"background.png"]];

    NSArray *array = [[NSArray alloc] initWithObjects:

// A larger amount of objects here.

self.listData = array;

    [array release];
    [super viewDidLoad];

}

/*
 // The designated initializer. Override to perform setup that is required before the view is loaded.
 - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
 if ((self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil])) {
 // Custom initialization
 }
 return self;
 }
 */

/*
 // Implement loadView to create a view hierarchy programmatically, without using a nib.
 - (void)loadView {
 }
 */

/*
 // Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
 - (void)viewDidLoad {
 [super viewDidLoad];
 }
 */

/*
 // Override to allow orientations other than the default portrait orientation.
 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
 // Return YES for supported orientations
 return (interfaceOrientation == UIInterfaceOrientationPortrait);
 }
 */

- (void)didReceiveMemoryWarning {
    // Releases the view if it doesn't have a superview.
    [super didReceiveMemoryWarning];

    // Release any cached data, images, etc that aren't in use.
}

- (void)viewDidUnload {
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;

    self.listData =  nil;
    self.table = nil;
    self.search = nil;
    self.allNames = nil;
    self.names = nil;
    self.keys = nil;

}


- (void)dealloc {
    [listData release];
    [search release];
    [table release];
    [allNames release];
    [keys release];
    [names release];
    [super dealloc];
}

#pragma mark -
#pragma mark Table View Data Source Methods

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return ([keys count] > 0) ? [keys count] : 1;

}

- (NSInteger)tableView:(UITableView *)aTableView
 numberOfRowsInSection: (NSInteger)section {
    return [self.listData count];
    if ([keys count] == 0)
        return 0;
    NSString *key = [keys objectAtIndex:section];
    NSArray *nameSection = [names objectForKey:key];
    return [nameSection count];
}

- (UITableViewCell *) extracted_method: (UITableViewCell *) cell  {
  return cell;

}
- (UITableViewCell *)tableView:(UITableView *)aTableView

cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    NSUInteger section = [indexPath section];
    NSUInteger row = [indexPath row];   

    NSString *key = [keys objectAtIndex:section];
    NSArray *nameSection = [names objectForKey:key];

    static NSString *sectionsTableIdentifier = @"sectionsTableIdentifier";

    UITableViewCell *cell = [aTableView dequeueReusableCellWithIdentifier:
                             sectionsTableIdentifier];

    if (cell == nil) {
        cell = [[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier: sectionsTableIdentifier] autorelease];

}

    cell.backgroundColor = [UIColor clearColor];
    cell.textColor = [UIColor whiteColor]; 
    cell.detailTextLabel.textColor = [UIColor whiteColor];
    cell.text = [nameSection objectAtIndex:row];

    [self extracted_method: cell].text = [listData objectAtIndex:row];

    return cell;

} 

     - (NSString *)tableView:(UITableView *)tableView 
    titleForHeaderInSection:(NSInteger)section {
    if ([keys count] == 0)
        return nil;


     NSString *key = [keys objectAtIndex:section];
     return key;    

     }

     -(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {
        return keys;

     }

#pragma mark -
#pragma mark Table View Delegate Methods
        - (NSIndexPath *)tableView:(UITableView *)tableView
    willSelectRowAtIndexPath:(NSIndexPath *)indexPath {
            [search resignFirstResponder];
            return indexPath;
    }


#pragma mark -
#pragma mark Search Bar Delegate Methods

- (void)searchBarSearchButtonClicked:(UISearchBar *)searchBar {
        NSString *searchTerm = [searchBar text];
        [self handleSearchForTerm:searchTerm];
}

- (void)searchBar:(UISearchBar *)searchBar
textDidChange:(NSString *)searchTerm {
    if ([searchTerm length] == 0) {
    [self resetSearch];
    [table reloadData];
    return;
}

  [self handleSearchForTerm:searchTerm];
}


    - (void)searchBarCancelButtonClicked:(UISearchBar *)searchBar {
        search.text = @"";
        [self resetSearch];
        [table reloadData];
        [searchBar resignFirstResponder];

}
@end

Хорошо, ребята. Моя проблема заключается в том, что это не работает функция поиска. Кроме того, я получаю сигнал SIGABRT по этой линии:

    NSString *key = [keys objectAtIndex:section];

Так что мне нужна помощь с двумя вещами:

1: Мне нужно забрать этот SIGABRT.

Сообщение журнала ошибок: * Завершение работы приложения из-за необработанного исключения «NSRangeException», причина: «* - [NSMutableArray objectAtIndex:]: индекс 0 вне границ для пустого массива '

То есть я не храню никаких данных в ключах. как бы я это сделал? и что я буду хранить?

2: хотите, чтобы функция поиска выполняла поиск в моем массиве listData!

Заранее спасибо - надеюсь, вы поможете!

1 Ответ

3 голосов
/ 01 апреля 2011

Вы не завершили свой sectionIndexTitlesForTableView: метод. Прямо сейчас это:

-(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {
        return keys;

Нет закрывающего }, поэтому компилятор думает, что все после этого все еще является частью этого метода. Когда вы пытаетесь определить следующий метод, используйте команду - (NSIndexPath *), чтобы указать, что это метод экземпляра, который возвращает NSIndexPath *, но компилятор считает, что вы пытаетесь что-то вычесть.

Решение простое: добавьте} в конец sectionIndexTitlesForTableView:.

-(NSArray *)sectionIndexTitlesForTableView:(UITableView *)tableView {
        return keys;
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...