gpt4 book ai didi

ios - iPad 上的 drawRect 导致内存问题

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:18:28 28 4
gpt4 key购买 nike

我有一个 5 标签标签栏 Controller iPad 应用程序。其中一个选项卡 (EKG) 导致内存问题。我运行了 Instruments,我能看到的是 malloc 分配不断增加,大约 12 分钟后,我所有的 View Controller 首先获得 didReceiveMemoryWarning 级别 1,然后是级别 2,然后 SigAbort 0 终止

该应用程序的设计工作方式是,当 EKG 选项卡处于事件状态时,每 200 毫秒触发一次 setNeedsDisplay,以便在屏幕上绘制(绘制)EKG 样本。当我让应用程序正常运行时,它会在大约 12 分钟后终止。

但是,如果我保留 setNeedsDisplay 并注释掉 drawRect 中的代码,它将运行永远。我不知道我的“drawRect”中有任何内存分配,但有人在做这些 mallocs 下面是我的 drawRect 代码:

- (void) drawRect : (CGRect) rect 
{
int i, ii, x = 0, xx, y;

fEcgDraw = YES;
CGContextRef context = UIGraphicsGetCurrentContext ();
CGContextSetLineWidth (context, 1);
HH = 376;
if (fEcgErase == YES)
{
CGContextSetStrokeColorWithColor (context,
[UIColor blackColor].CGColor);
/*==============================================================================*/
/* Erase the last screen. */
/*==============================================================================*/
for (i = 0; i < 120; i++)
{
CGContextMoveToPoint (context,
ECGX[x],
(HH - ECGS[x]));
CGContextAddLineToPoint (context, ECGX[(x + 1)],
(HH - ECGS[((x + 1) % 119)]));
x++;
} // end - for (i = 0; i < 120; i++)
CGContextStrokePath (context);
fEcgErase = NO;
} // end - if (fEcgErase == YES)
else if (fECGLOOP)
{
xx = 1;
x = 0;
y = YY;
ii = 0;
for (i =
{
// if (xx == 1)
{
/*==============================================================================*/
/* First erase the prior ECG A/D plot value. */
/*==============================================================================*/
CGContextSetStrokeColorWithColor (context,
[UIColor blackColor].CGColor);
CGContextMoveToPoint (context,
ECGX[x],
(HH - ECGS[x]));
CGContextAddLineToPoint (context,
ECGX[(x + 1)],
(HH - ECGS[((x + 1))]));
CGContextStrokePath (context);
/*==============================================================================*/
/* Now plot the next ECG A/D plot value. */
/*==============================================================================*/
CGContextSetStrokeColorWithColor (context,
[UIColor whiteColor].CGColor);
CGContextMoveToPoint (context,
ECGX[x],
(HH - ECGY[y]));
CGContextAddLineToPoint (context,
ECGX[(x + 1)],
(HH - ECGY[((y + 1) % 119)]));
CGContextStrokePath (context);
ECGS[x] = ECGY[y];
x++;
y = ((y + 1) % 119);
} // end - if (xx == 1)
} // end - for (i = 0; i < 120; i++)
y = ((y + count1) % 119);
YY = y;
count1 = 0;
} // end - if (fEcgErase == YES)
fEcgDraw = NO;

} // end - 'drawRect'
/*===============================END OF FUNCTION================================*/

最佳答案

通过在每个“CGContextStrokePath”之前添加“CGContextClosePath”解决了问题,应用程序现在将永远运行而没有任何“didReceiveMemoryWarning”。

-吉尔·古德里奇

关于ios - iPad 上的 drawRect 导致内存问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7216165/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com