我試圖從Class A
調用繪圖方法,例如位於Class B
中的方法,該方法正在調用,但沒有繪圖發生。iPhone Quartz - 從其他類別調用繪圖方法
- (void)drawIt
{
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(context, [UIColor whiteColor].CGColor);
NSString *string = [NSString stringWithString:@"TEXT"];
[string drawAtPoint:CGPointMake(12, 51) withFont:[UIFont fontWithName:@"Helvetica" size:35.0f]];
}
爲什麼我可以從其他類調用此方法?
謝謝,調用超類是UITableView,我正在使用drawRect,但我不想在對象init上畫圖。 – jkigel