我有一個名爲「drawingViewController」類觀點,我有drawRect方法:如何使用其他方法調用iPhone進行繪製?
- (void)drawRect:(CGRect)rect {
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetLineWidth(context, 2.0);
CGContextSetStrokeColorWithColor(context, [UIColor redColor].CGColor);
CGContextMoveToPoint(context, 0.0f, 0.0f);
CGContextAddLineToPoint(context, 100.0f, 100.0f);
CGContextStrokePath(context);
}
但我想定義一些其他繪圖方法,但我以前不工作,我怎麼可以這樣做除了調用drawRect方法? thz提前。
所以,如果我想更新視圖,我仍然需要調用drawRect方法? – Tattat 2010-04-05 03:21:07
重申:*你永遠不會自己調用'drawRect:'*。調用其他函數,框架會爲你調用'drawRect:'。 – 2010-04-05 05:57:44