0

我正在制作一个简单的绘图应用程序,但内存有问题。使用几分钟后,它就崩溃了,这让 iPad 很慢。

用户创建绘图的线条由 2x2 像素的 UIImageView 组成,所以这个 UIImageView 被创建了几次:

UIImageView*dibujo = [[UIImageView alloc] initWithFrame:CGRectMake(x-1,y-1,2,2)];
dibujo.image = [UIImage imageNamed:@"pixelde2po2.png"];
tagdedibujo=tagdedibujo+1;
dibujo.tag=tagdedibujo;
[self.view addSubview:dibujo];

它以这种方式被删除:

    for (int aa=ultimotag+1; aa<=tagdedibujo; aa++) {
    //NSLog(@"destruyendo: %i", aa);
    UIImageView*dibujo1 = (UIImageView *)[self.view viewWithTag:aa];

    [UIView animateWithDuration:0.5 animations:^{
        dibujo1.alpha=0;
    }];

}

[self performSelector:@selector(matardibujo) withObject:(self) afterDelay:(0.51)];
   ultimotag=tagdedibujo;




-(void) matardibujo{
for (int aa=ultimotag+1; aa<=tagdedibujo; aa++) {
    [[self.view viewWithTag:aa] removeFromSuperview];
}

}

即使在擦除 de draw (matardibujo) 之后,我也无法恢复记忆。即使它成长。所以我认为擦除部分是这里搞砸的部分。

我会感谢您的帮助,我对此很陌生。谢谢 :)。

4

1 回答 1

1

您能否dibujo.image = [UIImage imageNamed:@"pixelde2po2.png"];用以下代码行替换以查看它是否解决了您的问题?

NSString *fileName = [[NSBundle mainBundle] pathForResource:@"pixelde2po2" ofType:@"png"];
UIImage *image = [UIImage imageWithContentsOfFile:fileName];
于 2012-11-07T01:41:27.247 回答