具有背景图像的自定义表格视图单元格 - 宽度问题

时间:2011-01-07 02:18:24

标签: uitableview width

我有一个自定义单元格(在IB中设置),背景图像宽度为320像素。单元格的宽度也是320.当我运行我的应用程序时,单元格右侧大约有5个像素的白色。换句话说,我的图像不会覆盖整个屏幕宽度。我的代码如下所示:

- (UITableViewCell *) tableView: (UITableView *) tableView cellForRowAtIndexPath: (NSIndexPath *) indexPath {
        static NSString *OffensivePlayerCellIdentifier = @"OffensivePlayerCellIdentifier";
    OffensivePlayerCell *cell = (OffensivePlayerCell *)[tableView dequeueReusableCellWithIdentifier: OffensivePlayerCellIdentifier];
    if( cell == nil ) {
        NSArray *nib = [[NSBundle mainBundle] loadNibNamed: @"OffensivePlayer" owner: self options: nil];
        cell = [nib objectAtIndex: 0];
    }
    return cell;
}

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

好吧,我没有将图像直接应用到单元格的背景,而是尝试添加图像视图并将图像应用于该图像。现在它有效。不知道为什么。奇怪的行为。