Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save furusystems/165570 to your computer and use it in GitHub Desktop.
Save furusystems/165570 to your computer and use it in GitHub Desktop.
// Using themeAttribute's
[aTextField setValue: [CPFont boldSystemFontOfSize:11.0] forThemeAttribute:@"font"];
[aTextField setValue: CPCenterTextAlignment forThemeAttribute:@"alignment"];
[aTextField setValue: [CPColor colorWithHexString: "677482"] forThemeAttribute:@"text-color"];
// Else TextField Methods.
[aTextField setFont:[CPFont boldSystemFontOfSize:11.0]];
[aTextField setAlignment: CPCenterTextAlignment];
[aTextField setTextColor: [CPColor colorWithHexString: @"677482"]];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment