Дублирующиеся объекты в NSMutableArray, отображаемые UITableview - PullRequest
1 голос
/ 17 января 2012

У меня есть проблема, которая меня озадачила, я написал новую версию программы и получил точно такую ​​же ошибку.

Когда запускается следующее, я должен получить красиво секционированное представление таблицы, например, 1964 -Сэм -Ветчина 1965 -Ним Чимпский 1980 -Джордж 1985 -Bubbles

Вместо этого я получаю 1964 -Сэм -Ветчина 1985 -Сэм 1980 -Sam

У кого-нибудь есть намеки на то, что я делаю неправильно?

Мой исходный код ниже:

#import <UIKit/UIKit.h>


#pragma mark Monkey Object definition
@interface Monkey : NSObject {
    NSString *monkeyName; 
    NSString *monkeyBirthYear;
}

@property (copy) NSString *monkeyName; 
@property (copy) NSString *monkeyBirthYear; 

-(id)initWithMonkeyName:(NSString*)MN monkeyBirthYear:(NSString *)MBY; 


@end 

@implementation Monkey

@synthesize  monkeyName; 
@synthesize monkeyBirthYear; 

-(id)initWithMonkeyName:(NSString *)MN monkeyBirthYear:(NSString *)MBY; 
{
    if ((self =[super init])) {
        monkeyName = [MN copy]; 
        monkeyBirthYear = [MBY copy]; 

    }
    return self; 
}


@end

@interface ViewController : UITableViewController
{
    NSMutableArray *barrel; 
    NSMutableArray *monkeyBirthdayIndex; 

}
@end

@implementation ViewController





#pragma mark UITableView 
- (NSString *)tableView:(UITableView *)aTableView titleForHeaderInSection:(NSInteger)section
{
    return [monkeyBirthdayIndex objectAtIndex:section];
}


-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return [monkeyBirthdayIndex count]; 
}

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


    UITableViewCellStyle style = UITableViewCellStyleDefault; 
    UITableViewCell *cell = [theTableView dequeueReusableCellWithIdentifier:@"Cell"]; 
    if(!cell) 
        cell = [[UITableViewCell alloc] initWithStyle:style reuseIdentifier:@"Cell"]; 

    Monkey *m = [barrel objectAtIndex:[indexPath row]]; 

    cell.textLabel.text = [m monkeyName]; 

    return cell; 
}


- (NSInteger)tableView:(UITableView *)aTableView numberOfRowsInSection:(NSInteger)section 
{
    NSString *match = [monkeyBirthdayIndex objectAtIndex:section]; 

    NSArray *currentMonkey = [barrel filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"SELF.monkeyBirthYear LIKE[cd] %@", match]];
    return [currentMonkey count];

}



-(void)loadView 
{
    [super loadView]; 


    Monkey *monkey1 = [[Monkey alloc] initWithMonkeyName:@"Sam" monkeyBirthYear:@"1964"]; 
    Monkey *monkey2 = [[Monkey alloc] initWithMonkeyName:@"Ham" monkeyBirthYear:@"1964"]; 
    Monkey *monkey3 = [[Monkey alloc] initWithMonkeyName:@"Nim Chimpsky" monkeyBirthYear:@"1965"]; 
    Monkey *monkey4 = [[Monkey alloc] initWithMonkeyName:@"Bubbles" monkeyBirthYear:@"1985"]; 
    Monkey *monkey5 = [[Monkey alloc] initWithMonkeyName:@"George" monkeyBirthYear:@"1980"]; 

    barrel = [NSMutableArray arrayWithObjects:monkey1, monkey2, monkey3, monkey4,monkey5, nil]; 

    monkeyBirthdayIndex = [[NSMutableArray alloc] init]; 

    for (int i=0; i<[barrel count]; i++) {
        //Get the date of each monkeys birthday
        Monkey *m = [barrel objectAtIndex:i]; 

        if (![monkeyBirthdayIndex containsObject:[m monkeyBirthYear]])
        {
            [monkeyBirthdayIndex addObject:[m monkeyBirthYear]];
        }

    }



}

@end

@interface AppDelegate :NSObject <UIApplicationDelegate> 
{
    UIWindow *window; 
}
@end 

@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; 
    ViewController *vc = [[ViewController alloc] init]; 
    UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc]; 
    window.rootViewController = nav; 
    [window makeKeyAndVisible]; 
    return YES; 
}




int main(int argc, char *argv[])
{
    @autoreleasepool {
        int returnValue = UIApplicationMain(argc, argv, nil, @"AppDelegate");
        return returnValue; 
    }
}

@end

Ответы [ 2 ]

0 голосов
/ 18 января 2012

Мой исправленный просмотр таблицы: cellForRowAtIndexPath.

   - (UITableViewCell *)tableView:(UITableView *)theTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {     
    NSInteger section = [indexPath section];     
    UITableViewCellStyle style = UITableViewCellStyleDefault; 

    UITableViewCell *cell = [theTableView dequeueReusableCellWithIdentifier:@"Cell"]; 
    if(!cell) 
        cell = [[UITableViewCell alloc] initWithStyle:style reuseIdentifier:@"Cell"];

    NSString *match = [monkeyBirthdayIndex objectAtIndex:section]; 

    NSArray *currentMonkey = [barrel filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"SELF.monkeyBirthYear LIKE[cd] %@", match]];

    Monkey *m = [currentMonkey objectAtIndex:[indexPath row]];

    cell.textLabel.text = m.monkeyName;

    return cell; 
}
0 голосов
/ 17 января 2012

В tableView:cellForRowAtIndexPath: вы возвращаете имя n-й обезьяны в бочке:

Monkey *m = [barrel objectAtIndex:[indexPath row]]; 

Что вам действительно нужно, так это n-я обезьяна в подмассиве, отфильтрованная как в tableView: numberOfRowsInSection:.

...