Skip to content

Instantly share code, notes, and snippets.

@tolmasky
Created September 20, 2008 09:43
Show Gist options
  • Save tolmasky/11732 to your computer and use it in GitHub Desktop.
Save tolmasky/11732 to your computer and use it in GitHub Desktop.
[importButton setBordered:NO];
[importButton setImagePosition:CPImageLeft];
[importButton setTitle:@"blah"];
[importButton setTextColor:[CPColor blackColor]];
[importButton setFont:[CPFont systemFontOfSize:16.0]];
[importButton setImage:[[CPImage alloc] initWithContentsOfFile:path1 size:CGSizeMake(32.0, 32.0)]];
[importButton setAlternateImage:[[CPImage alloc] initWithContentsOfFile:path2 size:CGSizeMake(32.0, 32.0)]];
[importButton setAlignment:CPLeftTextAlignment];
[importButton setDelegate:self];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment