我正在玩一段代码,这是我到目前为止所得到的。该应用程序获取XML Feed以显示作业广告,并在我附加的图像中显示它们。
我想弄清楚的是,如何使“描述”部分显示从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;
}
答案 0 :(得分:0)
尝试实施此目的:
-(CGFloat ) tableView:(UITableView*) tableView heightForRowAtIndexPath:(NSIndexPath*) indexPath
{
If(indexPath.section==2)
{
return 60;
}
}