gpt4 book ai didi

ios - 向 leftBarButtonItem 添加后退箭头?

转载 作者:可可西里 更新时间:2023-11-01 03:39:17 31 4
gpt4 key购买 nike

我想向 leftBarButtonItem 添加一个后退箭头,使其在视觉上看起来就像是一个普通的后退按钮,尽管它的功能略有不同。

有办法吗?

最佳答案

如果您使用导航 Controller ,您可以使用自定义按钮并隐藏后退按钮。

隐藏后退按钮使用这个:

self.navigationItem.hidesBackButton = YES;

对于自定义按钮:

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

这对你有用。快乐编码

关于ios - 向 leftBarButtonItem 添加后退箭头?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20971119/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com