我正在玩一段代码,这就是我到目前为止所得到的。该应用程序获取一个 XML 提要来显示招聘广告,并将它们显示在我附加的图像中。
我想弄清楚的是,如何使“描述”部分显示从 XML 文件中获取的所有信息。
答案会隐藏在用这种方法改变一些东西吗?
- (UITableViewCell *)tableView:(UITableView *)tv cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:CellIdentifier] autorelease];
}
switch(indexPath.section)
{
case 0:
cell.text = aBook.title;
break;
case 1:
cell.text = aBook.author;
break;
case 2:
cell.text = aBook.summary;
break;
}
return cell;
}