我想從我的NSDictionary
中給出一個關鍵值並獲取與其關聯的值。 我有這樣的:從nsdictionary獲取值
NSArray *plistContent = [NSArray arrayWithContentsOfURL:file];
NSLog(@"array::%@", plistContent);
dict = [plistContent objectAtIndex:indexPath.row];
cell.textLabel.text = [dict objectForKey:@"code"];
與plistContent
:
(
{
code = world;
key = hello;
},
{
code = 456;
key = 123;
},
{
code = 1;
key = yes;
}
)
那麼,如何讓 「你好」 給予字典 「世界」?
只是迭代'NSDictionary'並與值「world」比較並找到正確的數據。 – Raptor
有什麼問題?也許plistContent是NSArray,而不是NSDictionary?是你用NSLog記錄給我們的plistContent(@「array ::%@」,plistContent); ? – BergP
@PavelKatunin是的,我怎麼會從「世界」得到「你好」 – BluGeni