iphone - 加载 100 个 UIImages

标签 iphone objective-c uiimage asihttprequest

我正忙于处理 iPhone 应用程序。其中一部分是我从 Flickr 加载 100 个小图像作为 UIButton。 问题是如何处理内存。每次加载大约 5-6 MB。当我通过 navigationController popViewController 释放 View 时,内存几乎保持不变。

我现在所做的是循环所有图像并将请求放入 ASINetworkQueue。当循环准备好时,我执行 [networkQueue go]。

//Loop images
for (NSDictionary* message in output)
{
    NSString *imageURL = [[NSString alloc] initWithFormat:@"http://farm%@.static.flickr.com/%@/%@_%@_s.jpg", [message objectForKey:@"farm"], [message objectForKey:@"server"], [message objectForKey:@"id"], [message objectForKey:@"secret"]];

    if(cx > 280) { cy = cy + 78; cx = 6.0f; }

    //user data for the request
    NSMutableDictionary *imageInfo = [[NSMutableDictionary alloc] init];

    //init Image
    CGRect myImageRect = CGRectMake(cx, cy, 72.0f, 72.0f);
    UIButton *myImage = [[UIButton alloc] initWithFrame:myImageRect];
    [myImage setTag:i];

    [myImage setBackgroundColor:[UIColor whiteColor]]; //grayColor
    [imageInfo setObject:[NSString stringWithFormat:@"%i", i] forKey:@"arrayNr"];
    [images addObject: myImage];
    [fotoView addSubview: myImage];

    //get url
    NSURL *imageURI = [[NSURL alloc] initWithString:imageURL];

    //load image
    ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL: imageURI];

    [request setDownloadDestinationPath:[[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"] stringByAppendingPathComponent:[message objectForKey:@"id"]]];
    [request setUserInfo: imageInfo];
    [networkQueue addOperation:request];

    [imageURL release];
    [imageURI release];

    [myImage release];
    [imageInfo release];

    cx = cx + 78;
    i++;
}

当请求完成后,我这样做:

- (void)imageFetchComplete:(ASIHTTPRequest *)request
{
    UIImage *img = [[UIImage alloc] initWithContentsOfFile:[request downloadDestinationPath]];
    if (img)
    {
        //set image
        UIButton *myButton = [images objectAtIndex:[[[request userInfo] objectForKey:@"arrayNr"] intValue]];
        [myButton setBackgroundImage:img forState: UIControlStateNormal];
        [myButton addTarget:self action:@selector(showImage:) forControlEvents:UIControlEventTouchUpInside];
    }

    [img release];
}

这是我的 dealloc 函数:

- (void)dealloc
{
    [networkQueue cancelAllOperations];
    networkQueue.delegate = nil;
    [networkQueue release];

    [flickrController cancelAllOperations];
    flickrController.delegate = nil;
    [flickrController release];

    [images release];
    [fotoView release];
    [output release];

    [super dealloc];
}

我不明白内存怎么不会消失。 我能想到的解决方案是: - 为 uibutton/uiimage 创建一个自己的对象。 - 使用 UITableview 处理图像

这两种解决方案我都不知道关闭 View 后如何清除所有内存。 希望有人提醒我如何处理这种情况。

最佳答案

如果您在进行清理的地方发布了代码,可能会更清楚问题出在哪里,但无论如何我都会猜测:

imageFetchComplete: 方法中,当您调用 setBackgroundImage: 时,您会保留对图像的引用,因此它将保留在内存中,直到您释放保留的特定按钮对象。它。由于按钮本身由 images 数组保留,因此您也需要释放该数组,或者在可变数组的情况下从数组中删除按钮。

关于iphone - 加载 100 个 UIImages,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3227592/

相关文章:

ios - 如何更改 UIImage 的颜色

iPhone 如何将大图像与 JSON 文件一起发送?我应该将它嵌入到 JSON 中还是单独发送?

iphone - 无法在 Safari 或 UIWebView 中通过 HTTPS 查看 Quicktime 影片

iphone - AVCaptureStillImageOutput 中的 UIImage 方向不正确

iphone - 平行阵列

ios - MKMapRect 设置后如何缩小

ios - swift : How to set image to label that fits as per label size?

iphone - 选中时突出显示单元格的一部分

iOS 7 TableView 出队不起作用

ios - 在视觉格式语言中给予 View 相同的位置