问题描述
解决方案
在UIView中的初始化代码中加上
self.backgroundColor=[UIColor clearColor];
解决方案二:
清除背景颜色:
CGContextClearRect(context, rect);
或者设置为白色:
CGContextSetFillColorWithColor(context, [UIColor whiteColor].CGColor);
CGContextFillRect(context, rect);
时间: 2024-11-02 07:47:51