문제

I am getting a " potential leak" warning when I run Analyze. It's related to the line below. I am using ARC, though I understand that a CGImage is not released under ARC.

 textureColor = [UIColor colorWithPatternImage:texture];

I tried to release it with: CGImageRelease((__bridge CGImageRef)(textureColor)); but still have the same issue. Any tips on how to take care of this issue?

도움이 되었습니까?

해결책

This color information is used for cache to apply another place. So it doesn't get release I know it is the problem in UIkit framework but it does create any problem.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top