iPhone App - 为啥我的 CGContext 圆圈看起来像黑色方块?
Posted
技术标签:
【中文标题】iPhone App - 为啥我的 CGContext 圆圈看起来像黑色方块?【英文标题】:iPhone App - Why do my CGContext circles look like black squares?iPhone App - 为什么我的 CGContext 圆圈看起来像黑色方块? 【发布时间】:2011-07-05 21:00:59 【问题描述】:我的 iPhone 应用自定义 UIView 类中的这个 drawRect 方法有什么问题?它应该绘制一个彩色圆圈,但它绘制了一个适当宽度和高度的黑色正方形。
- (void)drawRect:(CGRect)rect
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetLineWidth(context, 2.0);
UIColor *c = [UIColor redColor];
const CGFloat *components = CGColorGetComponents([c CGColor]);
CGFloat red = components[0];
CGFloat green = components[1];
CGFloat blue = components[2];
CGFloat al = components[3];
CGContextSetRGBFillColor(context, red, green, blue, al);
CGContextFillEllipseInRect(context, CGRectMake(x, y, width, width));
【问题讨论】:
【参考方案1】:试试这个:
- (void)drawRect:(CGRect)rect
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextAddEllipseInRect(ctx, CGRectMake(x, y, width, width));
CGContextSetFillColor(ctx, CGColorGetComponents([[UIColor redColor] CGColor]));
CGContextFillPath(ctx);
【讨论】:
【参考方案2】:希望一切正常。
- (void)drawRect:(CGRect)rect
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetLineWidth(context, 2.0);
CGContextSetFillColorWithColor(context , [UIColor redColor].CGColor;
CGContextFillEllipseInRect(context, CGRectMake(x, y, width, width));
【讨论】:
以上是关于iPhone App - 为啥我的 CGContext 圆圈看起来像黑色方块?的主要内容,如果未能解决你的问题,请参考以下文章
为啥我不能删除或删除 iPhone / iPad Duplicate Enterprise App Icon Copy?