iOS4上的CGPathCreateCopyByStrokingPath等效?

时间:2011-10-15 09:19:49

标签: ios core-graphics cgpath

我在iOS 5.0上发现CGPathCreateCopyByStrokingPath非常方便使用,但它在iOS 5及更高版本上可用。

有没有简单的方法在iOS 4上实现相同的路径复制?

2 个答案:

答案 0 :(得分:3)

我使用它,它与IOS5和IOS4 +兼容。如果您使用相同的填充+笔触颜色,它可以100%工作。 Apple的文档对此有点暗淡 - 他们说“如果填写它就会有效”,他们并没有说“如果你说它会有点不对” - 但在这种情况下似乎有点不对。 YMMV。

// pathFrameRange: you have to provide something "at least big enough to 
// hold the original path"

static inline CGPathRef CGPathCreateCopyByStrokingPathAllVersionsOfIOS( CGPathRef 
  incomingPathRef, CGSize pathFrameRange, const CGAffineTransform* transform,
  CGFloat lineWidth, CGLineCap lineCap, CGLineJoin lineJoin, CGFloat miterLimit )
{
    CGPathRef result;

    if( CGPathCreateCopyByStrokingPath != NULL )
    {
        /**
        REQUIRES IOS5!!!
         */
        result = CGPathCreateCopyByStrokingPath( incomingPathRef, transform,
            lineWidth, lineCap, lineJoin, miterLimit);
    }
    else
    {
        CGSize sizeOfContext = pathFrameRange;
        UIGraphicsBeginImageContext( sizeOfContext );
        CGContextRef c = UIGraphicsGetCurrentContext();
        CGContextSetLineWidth(c, lineWidth);
        CGContextSetLineCap(c, lineCap);
        CGContextSetLineJoin(c, lineJoin);
        CGContextSetMiterLimit(c, miterLimit);
        CGContextAddPath(c, incomingPathRef);
        CGContextSetLineWidth(c, lineWidth);
        CGContextReplacePathWithStrokedPath(c);
        result = CGContextCopyPath(c);
        UIGraphicsEndImageContext();
    }
}

答案 1 :(得分:1)

嗯 - 不知道这是否属于“简单”,但在this SO post.

中查看Ed的方法