我正在尝试缩进 table 视图单元格文本标签的右边距

I am trying to indent the right margin of my table view cell's text label

我使用以下代码使单元格从左侧缩进:

[cell setIndentationWidth:1];
[cell setIndentationLevel:15];

不幸的是,当单元格包含大量文本时,这会偏移 table 查看单元格文本标签,所以这里的问题是省略号是文本标签的内容更靠右,省略号显示从左侧缩进时比平时更向上。

如何让我的 UITableViewCelltextLabel 也有正确的缩进(或边距)?

我做了以下操作(看来你不能用任何其他方式设置文本标签的框架)。

Header (.h):

@interface UITableViewCellFixed : UITableViewCell

@property (nonatomic, assign) CGRect textLabelFrame;

@end

实施(.m):

@implementation UITableViewCellFixed : UITableViewCell

- (id)initWithLabelFrame:(CGRect)textLabelFrame {
    self = [super init];
    if (self)
        self.textLabelFrame = textLabelFrame;
    return self;
}

- (void) layoutSubviews {
    [super layoutSubviews];
    self.textLabel.frame = self.textLabelFrame;
}

@end

...

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    ...
    UITableViewCellFixed *cell = [[UITableViewCellFixed alloc] initWithLabelFrame:CGRectMake(30, 0, tableView.frame.size.width - 60, 50)];
    ...
}