1

我正在尝试为 UIAccessoryView 使用自定义图像,但是我似乎无法让它工作。当表格视图启动时,它不会更新任何图像。我的代码如下:

- (UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *tableViewCell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
    MenuItem *menuItem = [self.menuItems objectAtIndex:indexPath.row];

    if (!tableViewCell)
    {
        tableViewCell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
        tableViewCell.textLabel.font = [UIFont fontWithName: CaptionDistractionBodyFontName size: 15];
        imageView.contentMode = UIViewContentModeCenter;
        tableViewCell.accessoryView = [[UIImageView alloc] initWithImage:nil];
    }

    tableViewCell.textLabel.text = menuItem.name;

    UIImageView *imageView = (UIImageView*)tableViewCell.accessoryView;
    imageView.image = nil;

    if (menuItem.type == MenuItemTypeCheckMark)
    {
        if (menuItem.isCheckMarked)
        {
            imageView.image = [UIImage imageNamed:@"DisclosureViewX"];
        }
    }
    else if (menuItem.type == MenuItemTypeSubmenu)
    {
        imageView.image = [UIImage imageNamed:@"DisclosureViewArrow"];
    }

    return tableViewCell;
}

我尝试了很多不同的东西,即调用setNeedsLayout,将代码移动到自定义UITableViewCelllayoutSubviews,但似乎没有任何效果。除了自己创建一个全新的附件视图之外,正确的方法是什么?

4

3 回答 3

2

由于您最初UIImageView使用nil图像设置,因此图像视图的框架的宽度和高度为零。您需要在分配实际图像后重置框架。

imageView.image = [UIImage imageNamed:@"DisclosureViewX"];
imageView.frame = CGRectMake(0, 0, imageView.image.size.width, imageView.image.size.height);

编辑:

实际上,[imageView sizeToFit]在设置图像而不是设置frame.

于 2013-09-06T20:02:07.190 回答
1

尝试做

tableViewCell.accessoryView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"DisclosureViewX"]];
于 2013-09-06T20:01:55.453 回答
0

我认为您的问题是图像视图以零大小创建。使用 initWithFrame: 或 initWithImage:,其中 image 不为零。使用 initWithImage: 创建后,图像视图的边界将设置为图像大小。单元格将自动居中附件视图。

于 2013-09-06T20:27:43.593 回答