码迷,mamicode.com
首页 > 其他好文 > 详细

改变滑动删除按钮样式

时间:2017-09-04 17:47:23      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:height   color   lld   void   ash   自定义   设置   edr   content   

在自定义 cell 中实现如下代码:

// 改变滑动删除按钮样式

- (void)layoutSubviews {

    [super layoutSubviews];

        for (UIView *subView in self.subviews){

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

                CGRect cRect = subView.frame;

                cRect.origin.y = 10;

                cRect.size.height = self.contentView.frame.size.height - 20;

                subView.frame = cRect;

                

                // 设置部分圆角(左上与左下)

                UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:subView.bounds byRoundingCorners:UIRectCornerBottomLeft | UIRectCornerTopLeft cornerRadii:CGSizeMake(12,12)];

                CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];

                maskLayer.frame = subView.bounds;

                maskLayer.path = maskPath.CGPath;

                subView.layer.mask = maskLayer;

                

                UIView *confirmView=(UIView *)[subView.subviews firstObject];

                // 改背景颜色

                confirmView.backgroundColor=[UIColor redColor];

                for(UIView *sub in confirmView.subviews){

                    if([sub isKindOfClass:NSClassFromString(@"UIButtonLabel")]){

                        UILabel *deleteLabel=(UILabel *)sub;

                        // 改删除按钮的字体

                        deleteLabel.font=[UIFont boldSystemFontOfSize:15];

                   

                        // 改删除按钮的文字

                        deleteLabel.text=@"删除";

                        }

                    }

                

                break;

            }

        }

    

}

改变滑动删除按钮样式

标签:height   color   lld   void   ash   自定义   设置   edr   content   

原文地址:http://www.cnblogs.com/zhufengshibei/p/7474477.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!