Iphone 自定义导航栏按钮与 SystemButtonImage
我正在使用自定义导航栏按钮,因此我可以为它们提供与导航栏不同的色调。
但我看不到一种方法让它们显示系统按钮(如重新加载的符号)。
我想这些都是私人的。你们中有人有我可以使用的匹配符号/图像吗?
I'm working with custom navigationBarButtons so I can give them a different tint-color thant the navigation Bar.
But I can't see a way to get them to show a systemButton (Like the symbol for reloading).
I guess these are private. Does anyone of you have matching symbols/images I can use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您要子类化 UIBarButtonItem,那么您仍然应该能够使用
initWithBarButtonSystemItem:target:action:
方法来初始化它。您可以传入一个 systemItem 进行刷新(重新加载)或添加等。如果您需要自定义初始化行为,请考虑在子类中重写此方法,只需记住调用超级实现即可。
If you're subclassing UIBarButtonItem, then you should still be able to init it with the
initWithBarButtonSystemItem:target:action:
method. You can pass in a systemItem for refresh (reload) or add, etc..If you need custom init behaviour, consider overriding this method in your subclass, just remember to call the super implementation.