(iphone) UIImage memory management problem

前端 未结 2 1729
感动是毒
感动是毒 2020-12-29 00:40

I\'m having trouble with UIImage memory management.
(iphone) my app gets memory warning when instruments shows "all allocations" only 7mb?

Essentially,

2条回答
  •  一生所求
    2020-12-29 01:16

    CGImage doesn't fluctuate more than I think(max 6+).. umm maybe 6+ = 6mg and baseline 10mg = 16Mg triggered the warning

    CGImages are not autoreleased, you should call CGImageRelease(image);

提交回复
热议问题