上海启嘟渡科技商贸有限公司
SEARCH

与我们合作

我们专注提供互联网一站式服务,助力企业品牌宣传多平台多途径导流量。
主营业务:网站建设、移动端微信小程序开发、营销推广、基础网络、品牌形象策划等

您也可通过下列途径与我们取得联系:

微 信: wxyunyingzhe

手 机: 15624122141

邮 箱:

导航栏一侧有多个按钮的处理

更新时间:2025-01-08 12:37:48

//导航栏一侧有多个按钮的时候

//写成一个view上

UIView * viewBackInNavi=[[UIView alloc]initWithFrame:CGRectMake(0, 0, 60, 30)];

viewBackInNavi.backgroundColor=[UIColor clearColor];

viewBackInNavi.userInteractionEnabled=YES;

//重做按钮

UIButton *myRightRePaintBtn=[[UIButton alloc]initWithFrame:CGRectMake(0, 0, 30, 30)];

[myRightRePaintBtn addTarget:self action:@selector(clear:) forControlEvents:UIControlEventTouchUpInside];

[myRightRePaintBtn setBackgroundColor:[UIColor clearColor]];

[myRightRePaintBtn.titleLabel setFont:[UIFont systemFontOfSize:15]];

[myRightRePaintBtn setImage:[UIImage imageNamed:@"iconfont-zhongzuo"] forState:UIControlStateNormal];

[myRightRePaintBtn setTitle:[NSString stringWithFormat:@" %@",NSLocalizedString(@"local_paintAgain", nil)] forState:UIControlStateNormal];

myRightRePaintBtn.titleLabel.adjustsFontSizeToFitWidth=YES;

[viewBackInNavi addSubview:myRightRePaintBtn];

//提交按钮

UIButton *myRightSubmitBtn=[[UIButton alloc]initWithFrame:CGRectMake(30, 0, 30, 30)];

[myRightSubmitBtn addTarget:self action:@selector(submitBtnClicked) forControlEvents:UIControlEventTouchUpInside];

[myRightSubmitBtn setBackgroundColor:[UIColor clearColor]];

[myRightSubmitBtn.titleLabel setFont:[UIFont systemFontOfSize:15]];

[myRightSubmitBtn setImage:[UIImage imageNamed:@"iconfont-tijiao-copy"] forState:UIControlStateNormal];

[myRightSubmitBtn setTitle:[NSString stringWithFormat:@" %@",NSLocalizedString(@"local_card", nil)] forState:UIControlStateNormal];

myRightSubmitBtn.titleLabel.adjustsFontSizeToFitWidth=YES;

[viewBackInNavi addSubview:myRightSubmitBtn];

UIBarButtonItem * right=[[UIBarButtonItem alloc]initWithCustomView:viewBackInNavi];

//将整个viewBackInNavi右移10

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

negativeSpacer.width =-10;//负数为右移,正数为左移

self.navigationItem.rightBarButtonItems = [NSArray arrayWithObjects:negativeSpacer,right, nil nil];

多重随机标签

猜你喜欢文章

QQ客服 电话咨询