1

我正在尝试显示远程服务器上 plist 中关键字“word”中的所有单词。清单如下:

<plist version="1.0">
<array>
<dict>
    <key>word</key>
    <string>wordhere</string>
    <key>definition</key>
    <string>definition Here</string>
    <key>partOfSpeech</key>
    <string>part of speech here</string>
    <key>crossReference</key>
    <string>cross reference here</string>
</dict>
<dict>
    <key>word</key>
    <string>wordhere2</string>
    <key>definition</key>
    <string>definition here2</string>
    <key>partOfSPeech</key>
    <string>part of speech here2</string>
    <key>crossReference</key>
    <string>cross reference here2</string>
</dict>

更新可以忽略 plist。我重写了它,所以它是一个硬编码数组。虽然仍然是同样的错误。我已经访问了 plist 的 url,所以我知道它有效。但这是我的代码。出于某种原因,当我跑步时,它并没有进入我的 uitable。也许我错过了一些东西。我只是想要关键:填充词以形成合适的列表。任何帮助将不胜感激:D已更新

[super viewDidLoad];
self.title = @"Dictionary";
 [myArray addObject:[[NSMutableDictionary alloc] initWithObjectsAndKeys:@"word1", @"word", @"Definition1", @"definition", @"Part of speech1", @"partOfSpeech", @"cross Reference1", @"crossReference", nil]];

这是我的 UITableViewCell

static NSString *CellIdentifier = @"Cell";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]
            ;
}
cell.textLabel.text = [[myArray objectAtIndex:indexPath.row] objectForKey:@"word"];
4

1 回答 1

0

给定myArray的是一个字典数组,那么这应该工作:

cell.textLabel.text = [[myArray objectAtIndex:indexPath.row] objectForKey:@"key"];
于 2013-03-01T15:50:55.823 回答