0

以下のコードは、親ビュー「parentView」に追加するサブビュー「theSubview」を作成するために使用するものです。

parentView にフレーム { {0.0, 0.0}, {100.0, 100.0} } があり、 theSubview にフレーム { {20.0, 20.0}, {20.0, 20.0} } があるとします。

問題は、描画が完了すると、青い矢印マークだけでなく、サブビューのフレームにある青いアウトラインも表示されることです。

私が間違っていることはありますか?

ありがとう!



// theSubview
// My UIView subclass that is added to another view
- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    if (self) {
        self.backgroundColor = [UIColor clearColor];
        self.opaque = NO;
    }
    return self;
}

- (void)drawRect:(CGRect)rect {

    [self drawArrow];        
}

- (void)drawArrow {    
    CGRect arrowRect;

    arrowRect = self.bounds;
    UIBezierPath *arrowPath = [UIBezierPath bezierPathWithRect:arrowRect];

//    UIColor *backgrColor = [UIColor grayColor];
//    [backgrColor setFill];
//    [arrowPath fillWithBlendMode:kCGBlendModeNormal alpha:0.9f];

    UIColor *strokeColor = [UIColor blueColor];
    [strokeColor setStroke];


    CGFloat thirdOfWidth = floorf(CGRectGetWidth(self.bounds) / 3);
    CGFloat thirdOfHeight = floorf(CGRectGetHeight(self.bounds) / 3);

    [arrowPath moveToPoint:CGPointMake(thirdOfWidth, thirdOfHeight)];
    [arrowPath addLineToPoint:CGPointMake(thirdOfWidth * 2, thirdOfHeight + (floorf(thirdOfHeight/2)))];
    [arrowPath addLineToPoint:CGPointMake(thirdOfWidth, thirdOfHeight * 2)];
    [arrowPath setLineWidth:3.0f];
    [arrowPath stroke];


}

4

1 に答える 1

1

ふふふ、分かった。bezierPathWithRectは、実際にはそのrect をパスとして bezierPath を作成します。rect はフレームではありません。b/c bezierPath にはフレームがありません。b/c UIView ではありません。

上記のコードを次のように変更する

UIBezierPath *arrowPath = [UIBezierPath bezierPath];

それを修正します。

于 2013-03-04T05:33:48.590 に答える