我已成功更改了给定代码的右侧导航按钮的文字。但我也想改变它有 delfault背景。
我只想显示透明背景的文字。
我也试过
UIBarButtonItem *rightBtn=[[UIBarButtonItem alloc] initWithTitle:@"MyTitle" style:UIBarButtonItemStyleDone target:self action:@selector(myMethod)];
rightBtn.tintColor =[UIColor clearColor];
但仍显示按钮背景。
有没有办法通过改变任何不具有背景的不同风格来实现它。或者是否有另一种简单的方法可以将按钮更改为没有透明背景的文本。
答案 0 :(得分:1)
您可以使用:
UIButton *btn=[[UIButton alloc]initWithFrame:CGRectMake(0, 0, 50, 50)];
btn.backgroundColor=[UIColor clearColor];
[btn setTitle:@"Title" forState:UIControlStateNormal];
[btn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
[btn addTarget:self action:@selector(myMethod) forControlEvents:UIControlEventTouchUpInside];
UIBarButtonItem *rightBtn=[[UIBarButtonItem alloc] initWithCustomView:btn];
[self.navigationItem setRightBarButtonItem:rightBtn];
答案 1 :(得分:0)
在viewDidLoad中添加:
[self.navigationItem.rightBarButtonItem setBackgroundImage:[UIImage new] forState:UIControlStateNormal barMetrics:UIBarMetricsDefault];