NSDictionary 字符串转换
我已经用字典手动编写了一个 .plist 文件。 我的问题是返回的键“route_id”的值是错误的。 我得到“1”代替“01”。
这是我的字典:
<dict> <key>route_desc</key> <integer>1</integer> <key>route_id</key> <string>01</string> </dict>
这是我的代码:
NSLog(@"%@", [selectedRoute valueForKey:@"route_id"]);
返回 1 而不是 01;
如果有人可以帮助我获得正确的价值!
I've manually written a .plist file with a dictionary.
My problem is that the value for the key "route_id" returned is wrong.
I get a "1" in place of "01".
Here my dict :
<dict> <key>route_desc</key> <integer>1</integer> <key>route_id</key> <string>01</string> </dict>
Here my code :
NSLog(@"%@", [selectedRoute valueForKey:@"route_id"]);
Return 1 and not 01;
If anyone can help me to get the right value !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定你在做什么,但你把某处搞砸了。我将 plist 保存到桌面并运行:
并得到:
I'm not sure what you're doing, but you're messing things up somewhere. I saved the plist to my desktop and ran:
And got: