如何缩进只有UITableViewCell内容而不是分隔符?

时间:2016-09-02 09:59:50

标签: ios objective-c uitableview

如果我使用此代码从左侧缩进,则所有内容都缩进(分隔符+内容)

<action name="authenticate" class="<Action_class_name>" method="<method_name>">
    <interceptor-ref name="store">
        <param name="operationMode">STORE</param>
    </interceptor-ref>
    <interceptor-ref name="defaultStack" />
    <result type="redirectAction">Successpage</result>
    <result name="input" >login.jsp</result>
</action>
<action name="login">
    <interceptor-ref name="defaultStack" />
    <result>login.jsp</result>
</action>

如果我使用它,也一样:

table.contentInset = UIEdgeInsetsMake(0, 20, 0, 0);

这对两者都没有帮助,因为它不会移动图像。

cell.layoutMargins = UIEdgeInsetsMake(0, 20, 0, 0);

1 个答案:

答案 0 :(得分:1)

您可以使用CustomTableCell获得所需内容:

首先,在ViewController中:

#import "ViewController.h"
#import "MyTableCell.h"

@interface ViewController ()

@property UITableView *tableView;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height)];
    _tableView.separatorStyle = UITableViewCellSelectionStyleNone;
    _tableView.backgroundColor = [UIColor grayColor];
    _tableView.dataSource = self;
    _tableView.delegate = self;
    [self.view addSubview:_tableView];
}

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return 20;
}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
    MyTableCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MyCell"];
    if (nil == cell) {
        cell = [[MyTableCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"MyCell"];
    }
    //Update data for cell

    return cell;
}

@end

这是MyTableCell.h:

#import "MyTableCell.h"

@interface MyTableCell()

@property UIView *containerView;
@property UIView *separationLine;

@end

@implementation MyTableCell

-(id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];

    _containerView = [[UIView alloc] init];
    _containerView.backgroundColor = [UIColor redColor];
    [self addSubview:_containerView];

    _separationLine = [[UIView alloc] init];
    _separationLine.backgroundColor = [UIColor blackColor];
    [self addSubview:_separationLine];

    return self;
}

-(void)layoutSubviews{
    _containerView.frame = CGRectMake(20, 0, self.frame.size.width-20, self.frame.size.height-1);
    _separationLine.frame = CGRectMake(10, self.frame.size.height-1, self.frame.size.width-10, 1);
}

@end

这是代码的截图:

enter image description here

您可以修改&#34; layoutSubviews&#34;中的代码。如你所愿。

希望它可以帮到你。