0
我想用下面的代碼畫一個圓圈。問題與繪圖圈
-(void)drawRect
{
CGContextRef contextRef = UIGraphicsGetCurrentContext();
CGContextSetRGBFillColor(contextRef,1,0,0,1);
CGContextFillEllipseInRect(contextRef, self.frame);
}
我得到我的圈子不如預期,但在圓截的邊緣/ interrupted.Can你們,請幫助該如何解決這個問題呢?
由於提前, S.
UIView是sublcass – sekhar 2010-11-01 18:16:00
我使用self.frame作爲參數 – sekhar 2010-11-01 18:22:13
你嘗試過使用self.bounds嗎? – oddi 2010-11-01 18:24:19