• iOS关于自定义rightBarButtonItem


    在常见iOS开发中,我们常遇到这样的需求,如下:

    我们需要自定义导航栏右侧按钮,常见的自定义包装按钮如下:

        //设置rightItem;

        UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];

        btn.frame = CGRectMake(0, 0, 40, 30);

        btn.selected = NO;

        [btn setTitle:@"管理" forState:UIControlStateNormal];

        [btn setTitle:@"取消" forState:UIControlStateSelected];

        [btn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

        [btn addTarget:self action:@selector(tap:) forControlEvents:UIControlEventTouchUpInside];

        UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]initWithCustomView:btn];

        [self.navigationItem setRightBarButtonItem:rightItem];

        但通过这个方法,我们往往是不能调整自定义出来的UIview距离屏幕边界的方法,对于一些比价坑*的产品经理来说,这远远不能达不到他们那颗装*的心,这个时候我们只能通过如下方法来调整整个个customView距离右边边界的值:

    //设置rightBarBtnItem样式:

        UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];

        btn.frame = CGRectMake(0, 0, 100, 30);

        [btn setImage:[UIImage imageNamed:@"rightUp"] forState:UIControlStateNormal];

        [btn setTitle:@"推荐奖励" forState:UIControlStateNormal];

        [btn setTitleColor:[UIColor lightGrayColor] forState:UIControlStateNormal];

        btn.titleLabel.font = [UIFont systemFontOfSize: 15.0];

        btn.titleLabel.textAlignment = NSTextAlignmentRight;

        [btn setTitleEdgeInsets:UIEdgeInsetsMake(0, 10, 0, 0)];

        UIBarButtonItem *rewardItem = [[UIBarButtonItem alloc]initWithCustomView:btn];

        UIBarButtonItem *spaceItem = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];

        spaceItem.width = -15;

        [btn addTarget:self action:@selector(pushToReward) forControlEvents:UIControlEventTouchUpInside];

        self.navigationItem.rightBarButtonItems = @[spaceItem,rewardItem];

    注意:这里着重强调的是给rightBarButtonItems弄成了一个数组,给它增加了一个spaceItem元素,用来控制customView距离右边的间距,本身rightBarButtonItem中包装的button距离它父控件,也就是rightBarButtonItem的值是5,当我们把width设置为-15后,相当于把整个rightBarButtonItem向右移动了10,对于特殊需求,可自行去调整.

  • 相关阅读:
    6.1(续)索引、索引组织表--Oracle模式对象
    Docker容器中用户权限管理
    setfacl、getfacl
    Premiere常见配置优化
    SSH代理
    给U盘分区
    IO模型
    window 系统各个版本 ie浏览器 默认版本 bootstrap ie版本兼容
    代码多版本处理及自动化打包部署流程
    vue3 watch 监听数组 对象
  • 原文地址:https://www.cnblogs.com/shineDongEr/p/5539545.html
Copyright © 2020-2023  润新知