开发者

How to correctly release a CGMutablePathRef in -dealloc?

开发者 https://www.devze.com 2023-03-10 04:09 出处:网络
Problem: Maybe the CGMutablePathRef has been created and set, but maybe not. What I do right now in -dealloc is:

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

精彩评论

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