ios – 向leftBarButtonItem添加一个后退箭头?

前端之家收集整理的这篇文章主要介绍了ios – 向leftBarButtonItem添加一个后退箭头?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在leftBarButtonItem中添加一个向后箭头,使它看起来像是一个常规的后退按钮,虽然它的功能略有不同.

有没有办法做到这一点?

解决方法

如果使用导航控制器,则可以使用自定义按钮并隐藏后退按钮.

要隐藏后退按钮使用此:

  1. self.navigationItem.hidesBackButton = YES;

而对于自定义按钮:

  1. UIButton * customButton = [UIButton buttonWithType:UIButtonTypeCustom];
  2. [customButton setBackgroundColor:[UIColor colorWithRed:197.0/255.0 green:190.0/255.0 blue:157.0/255.0 alpha:1.0]];
  3. [customButton setTitle:@"Do Something" forState:UIControlStateNormal];
  4. customButton.titleLabel.font = [UIFont fontWithName:@"Helvetica-Bold" size:11.0f];
  5. [customButton.layer setCornerRadius:3.0f];
  6. [customButton.layer setMasksToBounds:YES];
  7. [customButton.layer setBorderWidth:1.0f];
  8. [customButton.layer setBorderColor: [[UIColor grayColor] CGColor]];
  9. customButton.frame=CGRectMake(0.0,100.0,50.0,25.0);
  10. [customButton addTarget:self action:@selector(customMethod:) forControlEvents:UIControlEventTouchUpInside];
  11. UIBarButtonItem * customItem = [[UIBarButtonItem alloc] initWithCustomView:customButton];
  12. customItem.tintColor=[UIColor blackColor];
  13. self.navigationItem.leftBarButtonItem = customItem;

这对你有用.快乐的编码

猜你在找的iOS相关文章