无法在 iphone 中的另一个视图控制器中访问带有 id 的数组

发布于 2024-11-02 14:47:04 字数 1974 浏览 0 评论 0原文

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

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 这是带有 Id 的数组...它们向我显示 null..

如何纠正这个问题?

这里...在这个类中...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;

}

these is some code from my project..

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];

My problem is in another controller when I am accessing array with names which is fbNames in another class it is showing me proper names,But when I am accessing fbIds which is the array with Ids ...they are showing me null..

how to correct this?

here...in this class ...fbNames are working fbIds are not..

   - (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];

}

// Customize the appearance of table view cells.

    - (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;

}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傾旎 2024-11-09 14:47:04
NSString* forName=[feed objectAtIndex:index];
NSString *nameString = [forName valueForKey:@"name"];

我不认为 NSStringvalueForKey:

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

I don't think NSString has valueForKey:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文