UITextField SecureEntryText color changes
问题 I have a subclass of UITextField where I set the text color to be white. I am using this subclass for an email field and a password field. - (void)drawRect:(CGRect)rect { [super drawRect:rect]; self.clearButtonMode = UITextFieldViewModeWhileEditing; self.layer.backgroundColor = [UIColor clearColor].CGColor; self.textColor = [UIColor whiteColor]; [self setValue:[UIColor whiteColor] forKeyPath:@"_placeholderLabel.textColor"]; ...... ...... The password field has secureTextEntry set to YES , and