0

我正在继承 UIView 并通过详细视图控制器调用它。当我加载它时,它以正确的尺寸和位置显示,但它只是一个黑色方块......当我将 UIView 放入带有类的界面构建器时,它就可以工作。我不认为 draw rect 被称为。这是我的代码:

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        // Initialization code
        [self setNeedsDisplay];
    }
    return self;
}


- (void)drawRect:(CGRect)rect
{
    // Drawing code

    CGContextRef context = UIGraphicsGetCurrentContext();
    CGContextSetRGBFillColor(context, 255.0, 255.0, 0, 1);
    CGContextStrokeRect(context, CGRectMake(0, 0, 50, 50));
}

我这样称呼它:

 GameBox *boxy = [[GameBox alloc] initWithFrame:CGRectMake(50, 50, 50, 50)];
    [self.view addSubview: boxy];
4

1 回答 1

2

您正在设置填充颜色,但您正在抚摸一个矩形。您需要设置描边颜色:CGContextSetRGBStrokeColor

于 2012-04-27T19:25:40.617 回答