我想将导航 Controller 栏按钮项设置为图像。
我已阅读以下内容 - Add image to a navigationItem's title
我了解如何将其设置为图像。我实际上希望将其设置为设置 cog,在条形按钮项目中(如 cog 图标)。我之前在其他应用程序中看到过这种情况,我想知道是否有默认样式为此初始化,或者通常是否通过上述图像路由实现。
如果上面是这样,有谁知道这种(某种)默认图像样式图标在哪里可用,或者我需要制作一个吗?
Best Answer-推荐答案 strong>
您是否尝试过使用 UIBarButtonItem 的 initWithCustomView 选项?示例代码如下所示。
UIBarButtonItem *aButton = [[UIBarButtonItem alloc] initWithCustomView:[[UIImageView alloc] initWithImage:[UIImage imageNamed"settings.png"]]];
另一种方法是,
UIBarButtonItem *aButton = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed"settings.png"] style:UIBarButtonItemStyleBordered target:self actionselector(buttonTapped)];
关于ios - navcontroller - 将导航项设置为图像,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/12808992/
|