0

我正在玩一段代码,这就是我到目前为止所得到的。该应用程序获取一个 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;

}

工作清单

工作细节

4

1 回答 1

0

尝试实现这一点:

-(CGFloat ) tableView:(UITableView*) tableView heightForRowAtIndexPath:(NSIndexPath*) indexPath
{
If(indexPath.section==2)
{
return 60;
}
}
于 2012-06-04T15:51:14.733 回答