찾다

 >  Q&A  >  본문

objective-c - iOS画虚线

想在两个控件之间画虚线,有如下代码,不知为何不能画出来;

- (void)drawRect:(CGRect)rect {
        CGContextRef context = UIGraphicsGetCurrentContext();
        CGContextBeginPath(context);
        CGContextSetLineWidth(context, 5.0);
        CGContextSetStrokeColorWithColor(context, [UIColor redColor].CGColor);
        CGFloat lengths[] = {10,10};
        CGContextSetLineDash(context, 0, lengths, 5);
        CGContextMoveToPoint(context, 10.0, 20.0);
        CGContextAddLineToPoint(context, 310.0,20.0);
    //    CGContextMoveToPoint(context, _strategyImageView1.frame.origin.x + 101, _strategyImageView1.frame.origin.y + 25);
    //    CGContextAddLineToPoint(context, _strategyImageView2.frame.origin.x, _strategyImageView2.frame.origin.y + 25);
        CGContextStrokePath(context);
        CGContextClosePath(context);
}
巴扎黑巴扎黑2810일 전745

모든 응답(2)나는 대답할 것이다

  • 巴扎黑

    巴扎黑2017-04-17 17:42:46

    코드 자체에는 문제가 없으니 점선을 그어주시면 됩니다

    회신하다
    0
  • 怪我咯

    怪我咯2017-04-17 17:42:46

    다른 컨트롤에 가려져 있는지 계층 구조 페이지를 열어 살펴보세요

    회신하다
    0
  • 취소회신하다