Tableview - NSMutableDictionary - currow 获取整数值? iPhone

发布于 2024-11-10 14:03:01 字数 439 浏览 1 评论 0原文

如何将 ID 的值转换为整数。见下文:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    NSMutableDictionary *curRow = [myData objectAtIndex:indexPath.row];

    NSLog(@"Cell Click  %@ %@  -  %@",[curRow objectForKey:@"Name"], [curRow objectForKey:@"ID"], [curRow objectForKey:@"DOB"]);

    UserID= [curRow [objectForKey:@"ID" intValue]  ;  <<<< This doesnt work?

How do I get the value of the ID into an Integer. See below:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {

    NSMutableDictionary *curRow = [myData objectAtIndex:indexPath.row];

    NSLog(@"Cell Click  %@ %@  -  %@",[curRow objectForKey:@"Name"], [curRow objectForKey:@"ID"], [curRow objectForKey:@"DOB"]);

    UserID= [curRow [objectForKey:@"ID" intValue]  ;  <<<< This doesnt work?

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

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

发布评论

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

评论(2

梦亿 2024-11-17 14:03:01

如果 ID 在字典中,您可以使用字符串

UserID = [[curRow objectForKey:@"ID"] intValue];

In case the ID is in the dictionary a string you could use

UserID = [[curRow objectForKey:@"ID"] intValue];
萌无敌 2024-11-17 14:03:01

你的语法有错误。

UserID= [curRow [objectForKey:@"ID" intValue]  ;  <<<< This doesnt work?

使用下面

UserID= [[curRow objectForKey:@"ID"] intValue]  ;  <<<< This will work?

You have syntax wrong.

UserID= [curRow [objectForKey:@"ID" intValue]  ;  <<<< This doesnt work?

use below

UserID= [[curRow objectForKey:@"ID"] intValue]  ;  <<<< This will work?
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文