OStack程序员社区-中国程序员成长平台

标题: ios - navcontroller - 将导航项设置为图像 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 16:46
标题: ios - navcontroller - 将导航项设置为图像

我想将导航 Controller 栏按钮项设置为图像。

我已阅读以下内容 - Add image to a navigationItem's title

我了解如何将其设置为图像。我实际上希望将其设置为设置 cog,在条形按钮项目中(如 cog 图标)。我之前在其他应用程序中看到过这种情况,我想知道是否有默认样式为此初始化,或者通常是否通过上述图像路由实现。

如果上面是这样,有谁知道这种(某种)默认图像样式图标在哪里可用,或者我需要制作一个吗?



Best Answer-推荐答案


您是否尝试过使用 UIBarButtonIteminitWithCustomView 选项?示例代码如下所示。

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/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4