7.纯代码:按钮头像 版本1.0

---------------  ViewController.m  ---------------

 

#import "ViewController.h"


@interface ViewController ()

@end


@implementation ViewController

- (void)viewDidLoad

{

    [super viewDidLoad];

    UIButton *headBtn = [[UIButton allocinit];

    headBtn.frame = CGRectMake(8590100100); // 当一个控件的frame都是(0,0,0,0)它是不会显示的

    UIImage *image = [UIImage imageNamed:@"btn_01"];

    [headBtn setBackgroundImage:image forState:UIControlStateNormal];

    [self.view addSubview:headBtn]; 

}

@end 

 

posted @ 2015-08-01 14:43  我要选李白  阅读(171)  评论(0编辑  收藏  举报