1

我能够使用此外观代理更改后退按钮的色调颜色

//set back button tint
    [[UIBarButtonItem appearance] setTintColor:[UIColor colorWithRed:56.0/255.0 green:75.0/255.0 blue:134.0/255.0 alpha:1.0]];

我想知道是否可以更改后退按钮的不透明度?

4

1 回答 1

0

这将允许整个导航栏有一些不透明度

[self.navigationController.navigationBar setTranslucent:YES];
于 2012-07-11T01:32:44.717 回答