ios 遍历 NSDictionary
我正在花时间获取 text
,
2012-01-27 16:04:32.113 My App[13112:207] {
text = "\n [email protected]";
}
我可以通过 NSLog(@"%@", [data objectForKey:@"EmailURL"]);
NSLog(@"%@", [data objectForKey:@"EmailURL"]);
我已经尝试过 NSLog(@"%@", [[data objectForKey:@"EmailURL"] stringForKey:@"text"]);
并且我因 SIGABRT< /代码>在
AppDelegate.h
I'm having the darndest time getting the text
out of
2012-01-27 16:04:32.113 My App[13112:207] {
text = "\n [email protected]";
}
I can get this object fine by NSLog(@"%@", [data objectForKey:@"EmailURL"]);
I've tried NSLog(@"%@", [[data objectForKey:@"EmailURL"] stringForKey:@"text"]);
and I crash out with SIGABRT
on AppDelegate.h
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
NSDictionary
没有
stringForKey:
方法,您需要再次使用objectForKey:
:NSDictionary
doesn't have astringForKey:
method, you'll need to useobjectForKey:
again:使用 NSDictionary 的
-valueForKey:
Use NSDictionary's
– valueForKey: