NSLog未返回一致的结果



我有一个NSLog问题,它无法在不同负载之间保持相同的结果。这很令人沮丧,但如果有人能提供一些线索,那将是非常棒的。我正试图从我的应用程序代理调用一个数组

        NSLog(@"Selected Team 1 : %@", [[[appDelegate teamRoster]objectAtIndex:1] class]);
        NSLog(@"Selected Team 0 : %@", [[[appDelegate teamRoster]objectAtIndex:0] class]);
        NSLog(@"Selected Team : %@", [[[appDelegate teamRoster]objectAtIndex:indexPath.row] class]);
        NSLog(@"Selected Team : %@", [[appDelegate teamRoster]objectAtIndex:indexPath.row]);

我连续三次收到这些返回的

2011-06-22 09:56:54.734 CoCoach[33182:207] Selected Team 1 : _NSIndexPathUniqueTreeNode
2011-06-22 09:56:54.735 CoCoach[33182:207] Selected Team 0 : __NSCFSet
2011-06-22 09:56:54.735 CoCoach[33182:207] Selected Team : __NSCFSet
2011-06-22 09:56:54.736 CoCoach[33182:207] Selected Team : {(
)}
2011-06-22 09:56:54.737 CoCoach[33182:207] Selected Team 1 : _NSIndexPathUniqueTreeNode
2011-06-22 09:56:54.737 CoCoach[33182:207] Selected Team 0 : __NSCFSet
2011-06-22 09:56:54.738 CoCoach[33182:207] Selected Team : _NSIndexPathUniqueTreeNode
2011-06-22 09:56:54.738 CoCoach[33182:207] Selected Team : <_NSIndexPathUniqueTreeNode: 0x703e6c0>

2

2011-06-22 09:58:30.082 CoCoach[33189:207] Selected Team 1 : __NSArrayM
2011-06-22 09:58:30.083 CoCoach[33189:207] Selected Team 0 : NSCFString
2011-06-22 09:58:30.083 CoCoach[33189:207] Selected Team : NSCFString
2011-06-22 09:58:30.084 CoCoach[33189:207] Selected Team : Koch
2011-06-22 09:58:30.084 CoCoach[33189:207] Selected Team 1 : __NSArrayM
2011-06-22 09:58:30.085 CoCoach[33189:207] Selected Team 0 : NSCFString
2011-06-22 09:58:30.085 CoCoach[33189:207] Selected Team : __NSArrayM
2011-06-22 09:58:30.086 CoCoach[33189:207] Selected Team : (
)

3

2011-06-22 09:59:17.825 CoCoach[33192:207] Selected Team 1 : _UITableViewReorderingSupport
2011-06-22 09:59:17.826 CoCoach[33192:207] Selected Team 0 : NSCFString
2011-06-22 09:59:17.826 CoCoach[33192:207] Selected Team : NSCFString
2011-06-22 09:59:17.826 CoCoach[33192:207] Selected Team : Smith
2011-06-22 09:59:17.827 CoCoach[33192:207] Selected Team 1 : _UITableViewReorderingSupport
2011-06-22 09:59:17.827 CoCoach[33192:207] Selected Team 0 : NSCFString
2011-06-22 09:59:17.828 CoCoach[33192:207] Selected Team : _UITableViewReorderingSupport
2011-06-22 09:59:17.828 CoCoach[33192:207] Selected Team : <_UITableViewReorderingSupport: 0x5b3cf30>

此外,当我只是检查数组中的内容时,我会得到以下内容。

2011-06-22 09:58:30.078 CoCoach[33189:207] Team Roster Array: (
    "Koch",
    "Smith"
)

这完全符合预期。

什么东西?任何想法。谢谢

更新:添加数组的函数

- (void)fetchRecords:(NSString *)teamToFind{
    teamRoster = [[NSMutableArray alloc] init];
    NSManagedObjectContext *context = [self managedObjectContext];
    // Define our table/entity to use
    NSEntityDescription *entity = [NSEntityDescription entityForName:@"Teams" inManagedObjectContext:context];
    // Setup the fetch request
    NSFetchRequest *request = [[NSFetchRequest alloc] init];
    [request setEntity:entity];
    // Define how we will sort the records
    NSSortDescriptor *teams = [[NSSortDescriptor alloc] initWithKey:@"Team" ascending:NO];
    NSArray *sortDescriptors = [NSArray arrayWithObject:teams];

    [request setSortDescriptors:sortDescriptors];
    [teams release];
    // Fetch the records and handle an error
    NSError *error;
    NSMutableArray *mutableFetchResults = [[context executeFetchRequest:request error:&error] mutableCopy];

    if (!mutableFetchResults) {
        // Handle the error.
        // This is a serious error and should advise the user to restart the application
    }
    // Save our fetched data to an array
    [self setStoredTeams:mutableFetchResults];
    NSLog(@"Number of teams, %i", [storedTeams count]);
//  NSMutableArray *temp = [[NSMutableArray alloc] init];
    for (Teams *diffTeams in storedTeams) {
        NSLog(@"Name: %@", diffTeams.Team);
        NSSet *rowers = [[NSSet alloc] initWithSet:diffTeams.Rowers];
        for (Rowers *roster in rowers){
            if ([diffTeams.Team isEqualToString:teamToFind]) {
                NSString *fullName = [NSString stringWithFormat:@"%@ %@", roster.FName, roster.LName];
                NSLog(@"%@", fullName);
                [teamRoster addObject:fullName];
                [fullName release];
                NSLog(@"Team Roster Array: %@", teamRoster);                
            }
        }
    }
    if (![context save:&error]) {
        //This is a serious error saying the record could not be saved.
        //Advise the user to restart the application
    }
    [mutableFetchResults release];
    [request release];
}

我认为您希望在NSLog参数中使用NSStringFromClass([[[appDelegate teamRoster]objectAtIndex:1] class])

我释放了放入对象中的NSString,但在for循环中,对象被创建并第二次释放

最新更新