我正在开发一个需要在两点之间绘制虚线的应用程序。我试过了

CGContextSetLineCap(UIGraphicsGetCurrentContext(), kCGLineCapRound)
CGContextSetLineDash(UIGraphicsGetCurrentContext(), 0, lengths, LENGTH_OF_ARRAY)

但是我看到的是虚线而不是虚线。我怎样才能得到虚线呢?

最佳答案

CGContextRef context = UIGraphicsGetCurrentContext();
CGFloat lengths[2];
lengths[0] = 0;
lengths[1] = dotRadius * 2;
CGContextSetLineCap(context, kCGLineCapRound);
CGContextSetLineWidth(context, dotRadius);
CGContextSetLineDash(context, 0.0f, lengths, 2);

// CGContextAddEllipseInRect(context, self.bounds);

此代码应正常工作。

关于iphone - 在iPhone上使用Quartz绘制虚线,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3132847/

10-12 22:57