iPhone 后退按钮自定义图像
有没有一种简单的方法(委托?覆盖?类别?)全局自定义整个应用程序中导航栏中使用的所有后退按钮?
我不需要在上面添加自定义文本。
我不需要对它们进行自定义操作。
我只需要自定义按钮背景。
我的几乎所有视图控制器都来自 NIB 文件。
我所有的视图控制器共享相同的基类。
提前致谢!
is there a simple way (Delegation? Overwriting? Category?) do globally customize all the back buttons that are being used in the navigation bars throughout my whole app?
I don't need custom text on them.
I don't need custom actions on them.
I only need custom buttons background.
Almost all my view controllers are from NIB files.
All my view controllers share the same base class.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的 UIViewController 基类中,您可以在 viewDidLoad 方法中添加后退按钮的创建:
其中 yourCustomButton 是您的自定义按钮。
In your base UIViewController class you can add the creation of your back button in the viewDidLoad method:
where yourCustomButton is your customized button.
显然,正如评论之一所述,仅自定义背景是不可能的。
Apparently it is impossible to customize only the background, as stated by one of the comments.