We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cdd535 commit cfa3240Copy full SHA for cfa3240
JVFloatLabeledTextField/JVFloatLabeledTextField/JVFloatLabeledTextField.m
@@ -73,8 +73,11 @@ - (void)setLabelActiveColor
73
if (self.floatingLabelActiveTextColor) {
74
_floatingLabel.textColor = self.floatingLabelActiveTextColor;
75
}
76
+ else if ([self respondsToSelector:@selector(tintColor)]) {
77
+ _floatingLabel.textColor = [self performSelector:@selector(tintColor)];
78
+ }
79
else {
- _floatingLabel.textColor = self.tintColor;
80
+ _floatingLabel.textColor = [UIColor blueColor];
81
82
83
0 commit comments