我在ToolBar中有这两个按钮,并且想更改UIBarButtons的颜色,我该怎么做?我已经尝试过setTitleTextAttributes,但是似乎它没有这样的对象?我怎样才能做到这一点
UIBarButtonItem *sysDoneButton = [self createButtonWithType:UIBarButtonSystemItemDone target:self
action:@selector(actionPickerDone:)];
UIBarButtonItem *sysCancelButton = [self createButtonWithType:UIBarButtonSystemItemCancel target:self
action:@selector(actionPickerCancel:)];
最佳答案
UIBarButtonItem的颜色是其tintColor
。 (或者它可以使用从放入它的工具栏中继承的tintColor
。)
关于ios - UIBarbuttonItem更改textColor,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26917055/