我只想在视图上绘制一个矩形。这是我在 UIView 子类中的代码:
- (void)drawRect:(CGRect)rect
{
context = UIGraphicsGetCurrentContext();
CGContextSetRGBFillColor(context, 255.0/255.0, 0.0/255.0, 0.0/255.0, 1);
CGContextAddRect(context, (CGRectMake(20, 20, 20, 20)));
}
当我运行它时,没有绘制矩形。怎么了?