开发者

How to correctly release a CGMutablePathRef in -dealloc?

Problem: Maybe the CGMutablePathRef has been created and set, but maybe not.

What I do right now in -dealloc is:

if (path != N开发者_StackOverflow社区ULL) {
    CGPathRelease(path);
    path = NULL;
}

Is this correct?


From the manual,

void CGPathRelease ( CGPathRef path );

This function is equivalent to CFRelease, except that it does not cause an error if the path parameter is NULL.

So there is no need to NULL check.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜