UIButton

    UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
    btn.frame = CGRectMake(100, 100, 100, 40);
    
    [btn setTitle:@"button" forState:UIControlStateNormal];
    [btn setTitle:@"button01" forState:UIControlStateHighlighted];
    
    btn.backgroundColor = [UIColor grayColor];
    [btn setTitleColor:[UIColor redColor] forState:UIControlStateNormal];
    
    btn.titleLabel.font = [UIFont systemFontOfSize:18];
    
    [btn addTarget:self action:@selector(pressBtn) forControlEvents:UIControlEventTouchUpInside];
    
    [self.view addSubview:btn];

 

posted @ 2018-02-20 09:20  haiwei.sun  阅读(66)  评论(0编辑  收藏  举报
返回顶部