0

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

我该如何解决?

非常感谢

克劳斯

4

1 回答 1

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;
}
于 2013-03-02T06:08:20.180 回答