我对 iOS 很陌生,但我已经到了那里,但遇到了一个问题,我很确定我只是不知道要使用的语法。
如何使用字典数组填充 UITableview,并使用字典中的特定项目来填充两个部分?例如,我从网站读取了一个 plist 文件,它是一个字典数组。在字典项目中是一个称为“类型”的标识符。有两个不同的“类型”变量。一个表示“链接”,一个表示“显示”。我要做的是在一个部分中有一个带有“链接”的分区表,而在另一部分中有一个“显示”。
这是我拥有的代码,它将读取整个数组并将其放入一个部分,但我怎样才能让它分为两个部分?
这是 plist 的示例。注意“类型”,一个是“weblink”,一个是“show”。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array>
<dict>
<key>Title</key>
<string>Faceboook</string>
<key>Type</key>
<string>weblink</string>
<key>MapAddress</key>
<string></string>
<key>Address</key>
<string></string>
<key>Date</key>
<string></string>
<key>Link</key>
<string>http://www.facebook.com/myfacebook</string>
</dict>
<dict>
<key>Title</key>
<string>Bernardo Winery</string>
<key>Type</key>
<string>show</string>
<key>MapAddress</key>
<string>321+Lombard+St,+San+Francisco,+CA</string>
<key>Address</key>
<string>321 Lombard St, San Francisco, CA</string>
<key>Date</key>
<string>Nov 2nd and 3rd.</string>
<key>Link</key>
<string></string>
</dict>
</array>
</plist>
这是它将 plist 读入 NSMutableArray TableData 的地方。
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if(self)
{
NSError *error = nil;
NSString *URLString = [NSString stringWithContentsOfURL:[NSURL URLWithString:@"http://www.mywebsite.com/ShowList.plist"]
encoding:NSUTF8StringEncoding
error:&error];
URLString = nil;
if(error == nil)
{
TableData = [[NSMutableArray alloc]initWithContentsOfURL:[NSURL URLWithString:@"http://www.mywebsite.com/ShowList.plist"]];
}
else
{
NSString *errorString = @"No internet connection, these links may not work!";
UIAlertView *av = [[UIAlertView alloc] initWithTitle:@"Error"
message:errorString
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles: nil];
[av show];
NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"ShowList" ofType: @"plist"];
TableData = [[NSMutableArray alloc] initWithContentsOfFile:plistPath];
}
}
return self;
}
这里是 TableData 被输入到 tableView 的地方。
-(UITableViewCell *)tableView:(UITableView *)tv cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tv dequeueReusableCellWithIdentifier:@"cell"];
// NSLog(@"The count: %i", [TableData count]);
// NSLog(@"Terms array %@",TableData);
// NSLog(@"value at index %i is %@", 1, [TableData objectAtIndex:1]);
NSDictionary *tmpDic = [[NSDictionary alloc] initWithDictionary:[TableData objectAtIndex:[indexPath row]] copyItems:YES];
if (cell == nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"UITableViewCell"];
}
[[cell textLabel] setText:[tmpDic objectForKey:@"Title"]];
return cell;
}
预先感谢您的帮助。温德尔
编辑:我实施了以下 -
if ([[tmpDic objectForKey:@"Type"] isEqualToString:@"weblink"]) {
if(indexPath.section==0)
{
[[cell textLabel] setText:[tmpDic objectForKey:@"Title"]];
}
}
if ([[tmpDic objectForKey:@"Type"] isEqualToString:@"show"]) {
if(indexPath.section==1)
{
[[cell textLabel] setText:[tmpDic objectForKey:@"Title"]];
}
}
但以下情况正在发生: