iOS - 什么是分配泄漏?

时间:2013-01-31 13:11:51

标签: ios memory memory-management memory-leaks

我使用Allocations描述了我的一个应用程序,并发现每当我调用特定方法时,我的“Live Bytes”数量增加300 KB。我不知道是什么原因引起的。

以下代码行是罪魁祸首:

CNTile *newTile = [self getTileAtPosition:3];

相关方法如下所示:

- (CNTile *)getTileAtPosition:(int)pos
{
    CNTile *tileToReturn;

    for (int x = 0; x < [row count]; x++)
    {
        for (int y = 0; y < [col count]; y++)
        {
            The code here generates four CGPoints and a CGMutablePathRef,
            then uses CGPathContainsPoint to determine which CNTile to return.
        }
    }

    return tileToReturn;
}

我应该提一下,我的CNTile类只包含UIViewUIImageView,以及一些简单的变量(例如int和{{1} } S)。

非常感谢任何帮助!

1 个答案:

答案 0 :(得分:1)

如何创建CGMutablePathRef?使用CGPathCreateMutable?如果是,请确保使用CGPathRelease将其释放:

CGMutablePathRef thePath = CGPathCreateMutable();
...
CGPathRelease(thePath);