NSDictionaryがあり、NSArrayに追加する必要があります。どうすればいいですか?
NSDictionary *row = [NSDictionary dictionaryWithObjectsAndKeys:
[NSString stringWithFormat:@"%@",NSLocalizedString(@"no_favorites", nil)], @"Address", nil];
私が使用する場合:
aFavorite = [row allValues];
推測されたように、私がそれを印刷すると、私は得ました:
(
"No favorites added"
)
私が必要なのは:
(
{
Address = "No favorites added";
}
)
私が使用するので:
NSDictionary* dict = [aFavorite objectAtIndex:[indexPath row]];
NSString *contentForThisRow = [dict objectForKey:@"Address"];
dict値は1つまたは2つのキーを持つことができます。