我想更新字典中不是可變的字典中'距離'的值,我有一個由json讀取的字典組成的字典,我需要更新應用程序中的所有距離值,你能否給我一個示例代碼,我該怎麼做?更新字典中的鍵的值
這裏是我創建這個數組:
NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&err];
self.seachResult =[NSJSONSerialization JSONObjectWithData:responseData options:nil error:nil];
,這裏是它的樣本信息:
2013-07-20 00:04:41.753 MyApp[61075:16a03] sorted array of dictionaries: (
{
cid = 2;
distance = 0;
image = "http://images.png";
latitude = "48.245565";
longitude = "16.342333";
manual = "";
movie = "http://jplayer.org/video/m4v/Big_Buck_Bunny_Trailer.m4v";
pcode = 023942435228;
pid = 1;
pname = "example product";
price = "12.00";
qrcode = "";
rid = 1;
rname = "Example Retailer Name";
sale = 0;
"sale_percent" = 0;
"sale_price" = "0.00";
text = "here is text about sample product number 1...\nasdasdasda\nsdfsdfsd\nSdfsdf
},
{
cid = 1;
distance = 0;
image = "";
latitude = "";
longitude = "";
manual = "";
movie = "";
pcode = 1;
pid = 3;
pname = "test product";
price = "46.00";
qrcode = "";
rid = 2;
rname = "";
sale = 0;
"sale_percent" = 0;
"sale_price" = "35.00";
text = "some text here...
},
{
cid = 2;
distance = 0;
image = "httpestImage";
latitude = "48.245565";
longitude = "16.342333";
manual = "";
movie = "";
pcode = 1;
pid = 2;
pname = "sample product 2";
price = "126.00";
qrcode = "";
rid = 1;
rname = "Example Retailer Name";
sale = 1;
"sale_percent" = 20;
"sale_price" = "99.99";
text = "here is text about sample product number 2...\nblah blah blah\nasdasdasd\nASdasdas\nASdasdasd";
}
)
測試我試過,但即使我不能這樣簡單的字典更新值:
NSMutableDictionary *dict = [NSDictionary dictionaryWithObjectsAndKeys:
@"value1", @"key1", @"value2", @"key2", nil];
[dict setValue:@"test" forKey:@"key2"];
錯誤:
2013-07-20 00:46:08.086 NSdictionaryTest [61130:11303] *由於未捕獲異常'NSUnknownKeyException',原因:'[< __NSDictionaryI 0x7556390> setValue:forUndefinedKey:]:此類不是鍵值編碼符合密鑰2「。 *第一擲調用堆棧: (0x1c90012 0x10cde7e 0x1d18fb1 0xb79e41 0xafb5f8 0xafb0e7 0x2200 0xf31c7 0xf3232 0x423d5 0x4276f 0x42905 0x4b917 0xf96c 0x1094b 0x21cb5 0x22beb 0x14698 0x1bebdf9 0x1bebad0 0x1c05bf5 0x1c05962 0x1c36bb6 0x1c35f44 0x1c35e1b 0x1017a 0x11ffc 0x1e5d 0x1d85) 的libC++ abi.dylib:終止叫拋出異常
你正在初始化一個不可變的NSMutableDictionary * dict。這個應該有效: NSMutableDictionary * dict = [NSMutableDictionary dictionaryWithObjectsAndKeys: @「value1」,@「key1」,@「value2」,@「key2」,nil]; [字典setValue:@「test」forKey:@「key2」]; – Silenteh