-1
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

NSLog(@"%d",indexId);
if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    /////////////////////   Cell Title    /////////////////////
    //cell.textLabel.font = [UIFont fontWithName:@"Noteworthy" size:20.0];
    cell.textLabel.font = [UIFont boldSystemFontOfSize:14.0];
    cell.textLabel.highlightedTextColor = [UIColor orangeColor];
}
/////////////////////   Cell Title    /////////////////////
cell.textLabel.text = [NSString stringWithFormat:@"  %@", [test.arrTitle objectAtIndex:indexPath.row]];

上面的代码我需要更改代码以获取 tableview 单元格标签之间的空间

谢谢并恭祝安康

4

2 回答 2

2

有几种方法可以在表格视图中的单元格之间添加空间。

您可以在 Interface Builder 中调整表格视图单元格的高度,您可以自定义具有不同高度的单元格,或者您可以通过tableView:heightForRowAtIndexPath:委托方法以编程方式返回不同的高度。

于 2013-03-30T11:20:42.477 回答
0

在两个单元格之间添加空间的一种简单方法是使用这些部分来显示数据。确保每个部分只包含一个单元格。然后,您可以在后续部分之间添加 sectionHeaderView 或 sectionFooterView 以使其正确。

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
  return [myItems count];
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
 return 1;
}

#define customSeparatorHeight 3
- (UIView*)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
  return [UIView alloc] initWithFrame:CGRectMake(0,0, tableView.bounds.size.width, customSeparatorHeight)];
}
于 2013-03-30T12:24:32.310 回答