我在viewLoad中使用下面的代碼(我不想在- (void)drawRect:(CGRect)rect
中繪製)以便在視圖中添加矩形但不起作用。爲什麼?問題在繪製矩形
CGRect rect=CGRectMake(10,10,150,140);
CGContextRef context = UIGraphicsGetCurrentContext();
CGFloat red[4] = {1.0f, 0.0f, 0.0f, 1.0f};
CGContextSetStrokeColor(context, red);
CGContextBeginPath(context);
CGContextMoveToPoint(context, 10, 10);
CGContextAddRect(context, rect);
CGContextStrokePath(context);
爲什麼不在drawRect中繪製:? – Jamie 2011-04-16 15:56:29