程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-下載和設置UIImage不在主線程中

ios-下載和設置UIImage不在主線程中

編輯:編程綜合問答
下載和設置UIImage不在主線程中

從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這個網站上去搜一下。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved