Skip to content

Commit

Permalink
Merge pull request #12 from onelittlefish/master
Browse files Browse the repository at this point in the history
Make setting inputTextFieldTextColor and toLabelTextColor update the tex...
  • Loading branch information
ayanonagon committed Aug 6, 2014
2 parents d96b149 + 45cf380 commit 2b3bee1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions VENTokenField/VENTokenField.m
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,18 @@ - (void)setPlaceholderText:(NSString *)placeholderText
self.inputTextField.placeholder = _placeholderText;
}

- (void)setInputTextFieldTextColor:(UIColor *)inputTextFieldTextColor
{
_inputTextFieldTextColor = inputTextFieldTextColor;
self.inputTextField.textColor = _inputTextFieldTextColor;
}

- (void)setToLabelTextColor:(UIColor *)toLabelTextColor
{
_toLabelTextColor = toLabelTextColor;
self.toLabel.textColor = _toLabelTextColor;
}

- (void)setColorScheme:(UIColor *)color
{
_colorScheme = color;
Expand Down

0 comments on commit 2b3bee1

Please sign in to comment.