静态UITableView中的单元格宽度

时间:2012-08-06 12:37:37

标签: uitableview static width cell

我正在使用带有静态表视图的UITableViewController作为我的应用程序中的选项面板。我有一个背景图像,显示一个圆形的边框面板,我想在这个图像中拟合静态单元格。不幸的是,它似乎无法设置单元格宽度,并且表格试图获得尽可能多的空间。

我该如何解决?

非常感谢

克劳斯

1 个答案:

答案 0 :(得分:0)

 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    cell.selectionStyle = UITableViewCellSelectionStyleNone;
    cell.textLabel.font = [UIFont boldSystemFontOfSize:16];

    //cell background image
    UIImageView *backgroundView = [[UIImageView alloc] initWithFrame:CGRectZero];
    cell.backgroundView = backgroundView;
    backgroundView.image = [UIImage imageNamed:@"backgroundimage.png"];

    return cell;
}