无法使用iphone中另一个视图控制器中的ID访问数组

时间:2011-04-20 12:04:19

标签: iphone facebook-graph-api nsmutablearray

这些是我项目中的一些代码..

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时,这是带有Ids的数组。 ..他们向我显示无效......

如何纠正这个?

这里......在这个班级...... 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 :(得分:0)

NSString* forName=[feed objectAtIndex:index];
NSString *nameString = [forName valueForKey:@"name"];

我认为NSString没有valueForKey: