dictionaryOfWebsites = [[NSMutableDictionary alloc] init];
[dictionaryOfWebsites setObject:@"http://www.site1.com" forKey:@"Site1"];
[dictionaryOfWebsites setObject:@"http://www.site2.com" forKey:@"Site2"];
[dictionaryOfWebsites setObject:@"http://www.site3.com" forKey:@"Site3"];
[dictionaryOfWebsites setObject:@"http://www.site4.com" forKey:@"Site4"];
上面是我的字典。我想要一个表格视图,其中 UITableViewCell 中的文本将显示“Site1”,而潜文本将具有 URL。
我知道这会给我所有的钥匙
NSArray *keys = [dictionaryOfWebsites allKeys];
// values in foreach loop
for (NSString *key in keys) {
NSLog(@"%@ is %@",key, [dict objectForKey:key]);
}
你的帮助将不胜感激
如果我的方法不是最好的,请告诉我,以便我可以从您的建议中学习。