我有一个 plist 字典,里面有几个这样的数组:
<dict>
<key>DebtA</key>
<array>
<dict>
<key>name</key>
<string>NameA</string>
<key>tel</key>
<string>11111111</string>
<key>email</key>
<string>namea@abc.com</string>
</dict>
</array>
<key>DebtB</key>
<array>
<dict>
<key>name</key>
<string>NameB1</string>
<key>tel</key>
<string>22222222</string>
<key>email</key>
<string>nameb1@abc.com</string>
</dict>
<dict>
<key>name</key>
<string>NameB2</string>
<key>tel</key>
<string>22222223</string>
<key>email</key>
<string>nameb2@abc.com</string>
</dict>
</array>
.. more arrays
</dict>
我想要实现的是,在表格视图中,部分中的行数等于辅助数组的项目数。
我尝试了以下方法,但没有成功。
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return [[[afdDict allKeys]objectAtIndex:section]numberOfItems];
}
我如何获得给定数组的项目数(例如,在 DebtA 中,一个。在 DebtB 中,两个)?