我有一个名为 itemDict 的 NSDictionary 并且在打印时
NSLog(@"itemDictValues:%@",itemDict);
输出格式如下:
itemDictValues:
GTLPlusPerson 0xab821e0:
{etag:""LTv_6IJISeUQGTVXLjMeOtebkoM/eup2crXcelmpMFKesXWlGkJjCiE"" kind:"plus#person" id:"1145282979128841" objectType:"person" displayName:"FirstName LastName" image:{url} url:"https://plus.google.com/1145282979128841"}
从中我需要提取与id、displayName和url对应的值到我的 NSString 变量中,格式如下
profileId=1145282979128841;
Name=FirstName LastName;
Profilepic=https://plus.google.com/1145282979128841;
我该怎么做?