美文网首页
UITableView侧滑实现(2)实现上面文字下面图片

UITableView侧滑实现(2)实现上面文字下面图片

作者: 小飞飞啊阿飞 | 来源:发表于2017-07-04 12:19 被阅读21次

    //自定义TableviewCell

    #import "OrderViewCell.h"

    #import "Masonry.h"

    @implementation OrderViewCell

    -(id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier

    {

    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];

    if (self)

    {


    }

    return self;

    }

    //cell上面view

    -(void)layoutSubviews{

    [super layoutSubviews];

    [self modifiDeleteBtn];

    }

    //实现上面文字下面图片

    -(void)modifiDeleteBtn{

    for (UIView *subView in self.subviews)

    {

    if ([subView isKindOfClass:NSClassFromString(@"UITableViewCellDeleteConfirmationView")]){

    //确认订单

    UIView *confirmationView = subView.subviews[3];

    confirmationView.backgroundColor = [UIColor colorWithRed:164/255.0 green:225/255.0 blue:225/255.0 alpha:1.0];

    for (UIView *view in confirmationView.subviews) {

    UIImageView *deleteImage = [[UIImageView alloc] init];

    deleteImage.contentMode = UIViewContentModeScaleAspectFit;

    deleteImage.image = [UIImage imageNamed:@"confirmOrder"];

    deleteImage.frame = CGRectMake(5, -10, 20, 20);

    [view addSubview:deleteImage];

    UIButton *oneBtn = [UIButton buttonWithType:UIButtonTypeCustom];

    oneBtn.frame = CGRectMake(-25, 5, 80, 30);

    [oneBtn setTitle:@"确认订单" forState:UIControlStateNormal];

    oneBtn.titleLabel.font = [UIFont fontWithName:@"Helvetica-Bold" size:10];

    [view addSubview:oneBtn];

    }

    }

    }

    相关文章

      网友评论

          本文标题:UITableView侧滑实现(2)实现上面文字下面图片

          本文链接:https://www.haomeiwen.com/subject/wdnthxtx.html