3
我有以下代碼以下面的代碼繪製一個正方形輪廓。哪裏可以在iPhone中編寫在UITableViewCell中繪製正方形的代碼
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextClipToRect(context, CGRectMake(0.0, 00.0, 50, 50));
CGContextSetLineWidth(context, 3.0);
CGContextSetRGBStrokeColor(context, 1.0, 0.0, 0.0, 1.0);
CGContextStrokeRect(context, CGContextGetClipBoundingBox(context));
我想繪製這個廣場到UITableViewCell。那麼我應該在哪裏寫Cocde來在那個單元格中畫一個正方形。 我想提請