美文网首页
2018-01-03

2018-01-03

作者: 超级疯小肛 | 来源:发表于2018-01-03 10:49 被阅读0次

    - (UIImage*) imageWithFrame:(CGRect)frame alphe:(CGFloat)alphe {

        frame =CGRectMake(0,0, frame.size.width, frame.size.height);

        UIColor*redColor = [UIColorwhiteColor];

        UIGraphicsBeginImageContext(frame.size);

        CGContextRef context = UIGraphicsGetCurrentContext();

        CGContextSetFillColorWithColor(context, [redColor CGColor]);

        CGContextFillRect(context, frame);

        UIImage *theImage = UIGraphicsGetImageFromCurrentImageContext();

        UIGraphicsEndImageContext();

        returntheImage;

    }

    相关文章

      网友评论

          本文标题:2018-01-03

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