Не удается получить доступ к массиву с идентификаторами в другом контроллере представления в iphone - PullRequest
0 голосов
/ 20 апреля 2011

это код из моего проекта ..

for (index=0; index<[feed count]; index++) {

    //NSLog(@"........%@",[feed objectAtIndex:2]);
    NSString* forName=[feed objectAtIndex:index];

    NSString *nameString = [forName valueForKey:@"name"];
    NSLog(@"--------%@",nameString);
    [nameArray addObject:nameString];

    NSString *idString = [forName valueForKey:@"id"];
    NSLog(@"--------%@",idString);
    [idArray addObject:idString];

}

MyFriends *detailViewController = [[MyFriends alloc] initWithNibName:@"MyFriends" bundle:nil];
// ...
// Pass the selected object to the new view controller.
detailViewController.fbNames=nameArray;
detailViewController.fbIds=idArray;
[self.navigationController pushViewController:detailViewController animated:YES];
[detailViewController release];

Моя проблема в другом контроллере, когда я обращаюсь к массиву с именами, который fbNames в другом классе, он показывает мне собственные имена, но когда я обращаюсь к fbIds, который является массивом с идентификаторами ... они показывает мне ноль ..

как это исправить?

здесь ... в этом классе ... fbNames работают, fbIds не ..

   - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
// Return the number of sections.
return 1;

}

    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
// Return the number of rows in the section.
return [fbNames count];

}

// Настройка внешнего вида ячеек табличного представления.

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

static NSString *CellIdentifier = @"Cell";

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

     // Configure the cell...
    cell.textLabel.text=[fbNames objectAtIndex:indexPath.row];
NSLog(@"%@",cell.textLabel.text);

return cell;

}

1 Ответ

0 голосов
/ 20 апреля 2011
NSString* forName=[feed objectAtIndex:index];
NSString *nameString = [forName valueForKey:@"name"];

Я не думаю, что NSString имеет valueForKey:

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...