- (UIButton*)createUIButtonWithLabel:(NSString*)inTitle frame:(CGRect)inFrame
{
UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button setTitle:inTitle forState:UIControlStateForNormal];
[button setFrame:inFrame];
return button;
}
- (UIButton*)createUIButtonWithImage:(UIImage*)inImage
{
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
[button setImage:image forState:UIControlStateNormal];
[button setFrame:CGRectMake(0, 0, image.size.width, image.size.height)];
return button;
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.