Created
July 21, 2011 09:54
-
-
Save marshluca/1096889 to your computer and use it in GitHub Desktop.
自定义UIButton: 左1/4图标,右3/4文字
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
UIViewController *controller = [[UIViewController alloc] init]; | |
MButton *button = [[MButton alloc] initWithFrame:CGRectMake(50, 100, 200, 100)]; | |
[button setImage:[UIImage imageNamed:@"arrow.png"] forState:UIControlStateNormal]; | |
[button setTitle:@"button" forState:UIControlStateNormal]; | |
button.titleLabel.textAlignment = UITextAlignmentCenter; | |
[controller.view addSubview:button]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment