图片加载堵塞线程

直接采用 这种方式加载图片 会堵塞主线程

 NSURL *imageURL = [NSURL URLWithString:@"http://www.i-programmer.info/images/stories/News/2011/MARCH/CMULOGO.jpg"];
NSData *imageData = [NSData dataWithContentsOfURL:imageURL];
cell.imageView.image = [UIImage imageWithData:imageData];

要把他放在子线程中执行,就不会造成界面卡死

你可能感兴趣的:(图片加载堵塞线程)