從web服務器中添加一個圖片。怎麼設置它不在主線程上?我想要視圖先加載,然後圖片加載。這樣用戶在體驗時不會感到很慢。
就是不知道怎麼加到代碼中。
NSData *imageData = [NSData dataWithContentsOfURL:[NSURL URLWithString:mainImageUrl]];
UIImage *image = [ [UIImage alloc] initWithData:imageData];
UIView *v = [ [UIView alloc] initWithFrame:CGRectMake(10, 150, 300, 180)];
UIImageView *iv = [ [UIImageView alloc] initWithFrame:CGRectMake(0, 10, 300, 180)];
[iv setImage:image];
[_scrollView addSubview:v];
[v addSubview:iv];
我想到可以加到線程中的:
dispatch_async( dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
// Add code here to do background processing
//
//
dispatch_async( dispatch_get_main_queue(), ^{
// Add code here to update the UI/send notifications based on the
// results of the background processing
});
});
現在有不少處理這種情況的解決方案。有一些第三方的庫可以實現這種的異步圖片加載,你只需要關注自己的邏輯就可以了。如:EGOImageView ,也可以自己到code4app.com這個網站上去搜一下。