Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用自定义导航栏按钮,因此我可以为它们提供与导航栏不同的色调。
但我看不到让他们显示 systemButton 的方法(如重新加载的符号)。
我猜这些是私人的。你们中有人有我可以使用的匹配符号/图像吗?
如果您是 UIBarButtonItem 的子类,那么您应该仍然可以使用该initWithBarButtonSystemItem:target:action:方法对其进行初始化。您可以传入一个 systemItem 以进行刷新(重新加载)或添加等。
initWithBarButtonSystemItem:target:action:
如果您需要自定义初始化行为,请考虑在您的子类中重写此方法,只需记住调用超级实现即可。