iOS button样式自定义

作者: oc123 | 来源:发表于2017-07-24 13:01 被阅读144次

    本文分享作者在iOS开发过程中,遇到的关于button自定制样式的一些经验;
    一、button自定义背景色
    首先定义一个UIButton的category分类或者重写一个UIButton的子类,实现代码如下:

    //state即button的状态
    - (void)setBackgroundColor:(UIColor *)backgroundColor forState:(UIControlState)state {
        [self setBackgroundImage:[UIButton imageWithColor:backgroundColor] forState:state];
    }
    
    + (UIImage *)imageWithColor:(UIColor *)color {
        CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f);
        UIGraphicsBeginImageContext(rect.size);
        CGContextRef context = UIGraphicsGetCurrentContext();
    
        CGContextSetFillColorWithColor(context, [color CGColor]);
        CGContextFillRect(context, rect);
    
        UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
        UIGraphicsEndImageContext();
    
        return image;
    }
    

    本文将持续更新,如有帮助请关注!
    荆轲刺秦王!

    相关文章

      网友评论

        本文标题:iOS button样式自定义

        本文链接:https://www.haomeiwen.com/subject/hbcbkxtx.html