iOS中自定义导航栏左边返回按钮和按钮不能靠左的问题

Posted TF_guo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS中自定义导航栏左边返回按钮和按钮不能靠左的问题相关的知识,希望对你有一定的参考价值。

/自定义左边 的按钮  

UIButton *leftButton = [[UIButton alloc]init];

    leftButton.frame = CGRectMake(002020);

    [leftButton setBackgroundImage:[UIImage imageNamed:@"返回.png"forState:UIControlStateNormal];

    [leftButton addTarget:self action:@selector(popToLastVC:) forControlEvents:UIControlEventTouchUpInside];

    UIBarButtonItem *leftBarButtonItems = [[UIBarButtonItem alloc]initWithCustomView:leftButton];

//解决按钮不靠左 靠右的问题.

    UIBarButtonItem *nagetiveSpacer = [[UIBarButtonItemalloc]initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace

target:nil action:nil];

    nagetiveSpacer.width = -15;//这个值可以根据自己需要自己调整

    self.navigationItem.leftBarButtonItems = @[nagetiveSpacer, leftBarButtonItems];

以上是关于iOS中自定义导航栏左边返回按钮和按钮不能靠左的问题的主要内容,如果未能解决你的问题,请参考以下文章

IOS 自定义导航栏标题和返回按钮标题

iOS 导航栏-返回按钮-自定义

自定义iOS导航栏背景,标题和返回按钮文字颜色

自定义iOS7导航栏背景,标题和返回按钮文字颜色

iOS 调整导航栏返回按钮的位置

iOS 自定义返回按钮,保留系统滑动返回