0

我试图在导航栏中显示“设置齿轮”而不是“设置”一词。有谁知道如何做到这一点?谢谢!

UIBarButtonItem *btnGo = [[UIBarButtonItem alloc] initWithTitle:@"Settings" 
style:UIBarButtonItemStyleBordered target:self action:@selector(settingsAction)];
self.navigationItem.rightBarButtonItem = btnGo;
4

2 回答 2

0

您可以先尝试制作一个 UIButton ,然后在其上设置齿轮图像

UIBarButtonItem *btnGo = [[UIBarButtonItem alloc] initWithCustomView:btn];
于 2012-12-14T12:27:37.567 回答
0

不幸的是,没有获取此图像的默认方法。您应该使用initWithImage:style:target:action: 并添加自己的图像。您可以自己制作一个,或者从 Glyphish 之类的地方预先制作:http ://www.glyphish.com

于 2012-12-14T11:23:21.533 回答