如果我更改 UIBarbutton 的色调,如何将其重置为默认色调。
在这里,我为按钮设置了自定义色调...
examCancelButton.style = UIBarButtonSystemItemCancel;
examCancelButton.tintColor = myRedButtonTint;
然后稍后我需要将其设置回它的默认样式和色调。所以我认为只需将样式设置为 UIBarButtonItemStyleDone 就可以做到这样......
examCancelButton.style = UIBarButtonItemStyleDone;
但颜色仍然是红色。我可以自己将其设置为漂亮的蓝色,但我想获得 UIBarButtonItemStyleDone 按钮的默认颜色。这可能吗?
谢谢,约翰