码迷,mamicode.com
首页 > 其他好文 > 详细

在view扣除正方形

时间:2014-04-29 13:33:22      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:color   width   问题   re   c   ar   

- (void)drawRect:(CGRect)rect
{
    [super drawRect:rect];
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    CGContextSetRGBFillColor(ctx, .3, .3, .3, .1);
    CGContextFillRect(ctx, self.bounds);
    
    CGContextSetStrokeColorWithColor(ctx, [UIColor whiteColor].CGColor);
    CGContextStrokeRectWithWidth(ctx, _clearRect, 2);
    
    CGContextClearRect(ctx, _clearRect);
}
项目中遇到一个遮罩层的问题,整个view浅灰色中间一块为透明色,能看到下面view上显示的内容!

在view扣除正方形,码迷,mamicode.com

在view扣除正方形

标签:color   width   问题   re   c   ar   

原文地址:http://blog.csdn.net/fucheng56/article/details/24645127

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!