You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently it's supported with using 'toolbarUsesTextFieldTintColor' property, in which toolbar use it's textField's tintColor. I think when toolbarUsesTextFieldTintColor=NO then we can add another property to set toolbarTintColor too. Thanks for a suggestion.
I set shouldToolbarUsesTextFieldTintColor = YES, and TextField's tintColor is WhiteColor, in iPad, the tintColor is WhiteColor, but in iPhone(4S,iOS9.1), the tintColor is some like grayColor(po textField.tintColor is UIDeviceRGBColorSpace 0.64 0.64 0.6).
In source code set tintColor is WhiteColor like this(line:1698):
#ifdef NSFoundationVersionNumber_iOS_6_1
//Setting toolbar tintColor // (Enhancement ID: #30)
if ([toolbar respondsToSelector:@selector(tintColor)])
[toolbar setTintColor:[UIColor whiteColor]];
#endif
Is there a way to do this with the current API, or is it planned? Thank you.
The text was updated successfully, but these errors were encountered: