• 改变滑动删除按钮样式


    在自定义 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;

                }

            }

        

    }

  • 相关阅读:
    C#操作配置文件
    IIS的启动与停止命令
    我的SQL里哪个语句占用的CPU最多?
    Redis 安装
    redis启动出错Creating Server TCP listening socket 127.0.0.1:6379: bind: No error
    多线程和异步
    mvc 使用Newtonsoft.Json进行序列化json数据
    深入理解JavaScript Hijacking原理
    C#中的partial class(部分类)
    在ASP.NET MVC中使用DropDownList
  • 原文地址:https://www.cnblogs.com/zhufengshibei/p/7474477.html
Copyright © 2020-2023  润新知