I'm using the flatui kit found here https://github.com/Grouper/FlatUIKit as an add-on for ios development in xcode. When I make a text field, it fails to properly set the border as a uicolor. I'm using what's showed in the tutorial on the github page, but it doesn't seem to work. My code for setting the properties is as follows:
_NameField.font = [UIFont flatFontOfSize:16];
_NameField.backgroundColor = [UIColor clearColor];
_NameField.edgeInsets = UIEdgeInsetsMake(4.0f, 15.0f, 4.0f, 15.0f);
_NameField.textFieldColor = [UIColor whiteColor];
_NameField.borderColor = [UIColor turquoiseColor];
_NameField.borderWidth = 20;
_NameField.cornerRadius = 3.0f;
I have set the text field as an outlet named _NameField, changed the outlet type to an FUITextField, and set the class on the storyboard as an FUITextField. Thanks for the help!
Also, I searched the example included with the github download and it does not implement the FUITextField element.