我将自动布局UITableViewCell用于iOS 8中引入的动态单元格高度。
我设置了单元并将accessoryType设置为UITableViewCellAccessoryDisclosureIndicator。我以编程方式进行所有布局。

我尝试这样做:
self.layoutMargin = UIEdgeInsetsZero;方法中UITableViewCell内的init

ios - 带有UITableViewCellAccessoryDisclosureIndicator的UITableViewCell删除右边距-LMLPHP

我想删除右边距或使用contentView调整大小设置自定义值

最佳答案

编辑:添加了用于管理textLabel和detailTextLabel框架的代码。

您可以通过覆盖自定义单元格类中的layoutSubViews方法来实现此目的(如果您不使用一个,请先创建一个,然后在表视图中使用它)。将以下代码添加到表视图单元类.m文件中:

const int ACCESORY_MARGIN = -10;
const int LABEL_MARGIN = -10;

- (void)layoutSubviews {
    [super layoutSubviews];

    CGRect frame;
    frame = self.textLabel.frame;
    frame.origin.x += LABEL_MARGIN;
    frame.size.width -= 2 * LABEL_MARGIN;
    self.textLabel.frame = frame;

    frame = self.detailTextLabel.frame;
    frame.origin.x += LABEL_MARGIN;
    frame.size.width -= 2 * LABEL_MARGIN;
    self.detailTextLabel.frame = frame;

    if (self.accessoryType != UITableViewCellAccessoryNone)
    {
        float estimatedAccesoryX = MAX(self.textLabel.frame.origin.x + self.textLabel.frame.size.width, self.detailTextLabel.frame.origin.x + self.detailTextLabel.frame.size.width);

        for (UIView *subview in self.subviews) {
            if (subview != self.textLabel &&
                subview != self.detailTextLabel &&
                subview != self.backgroundView &&
                subview != self.contentView &&
                subview != self.selectedBackgroundView &&
                subview != self.imageView &&
                subview.frame.origin.x > estimatedAccesoryX) {
                frame = subview.frame;
                frame.origin.x -= ACCESORY_MARGIN;
                subview.frame = frame;
                break;
            }
        }
    }
}


更改上面定义的常数以适合您的需求。

希望这可以帮助您解决问题。谢谢。

10-08 12:26