我想在viewContoller的視圖中繪製填充的矩形。 我在viewDidLoad中寫了下面的代碼。但沒有改變。 有什麼不對?如何繪製矩形?
CGRect rectangle = CGRectMake(0, 100, 320, 100);
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetRGBFillColor(context, 1.0, 0.0, 0.0, 1.0);
CGContextSetRGBStrokeColor(context, 1.0, 0.0, 0.0, 1.0);
CGContextFillRect(context, rectangle);
請注意,對於這個**非常老的問題**,我已經在現代答案2018 – Fattie