//單一導航欄按鈕設置如下
UIBarButtonItem *rightBarItem = [[UIBarButtonItem alloc] initWithTitle:nil style:UIBarButtonItemStylePlain target:self action:@selector(addItemmmClick)];
self.navigationItem.rightBarButtonItem = rightBarItem;
[self.navigationItem.rightBarButtonItem setImage:[[UIImage imageNamed:@"nav_add"] imageWithRenderingMode:UIImageRenderingModeAlwaysOriginal]];
//自定制導航欄按鈕實現多個按鈕
主要是先創建一個view,然后在上面創建多個按鈕,根據需求進行設置按鈕的數量,最后把按鈕數組作為導航欄的按鈕數組即可如下
//導航欄一側有多個按鈕的時候
//寫成一個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];