我有一個數組,其中有一個內容圖像的URL「Image」。我想在我的表格視圖中顯示該圖像。 如何做。請給我建議。解析Iphone中的圖像問題
0
A
回答
0
img_view = [[UIImageView alloc]init];
img_view.autoresizingMask = UIViewAutoresizingFlexibleWidth;
img_view.frame = CGRectMake(0,0,130, 75);
activityIndicator = [[[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge] autorelease];
[img_view addSubview: activityIndicator];
activityIndicator.center = CGPointMake(50,30);
NSOperationQueue *queue = [NSOperationQueue new];
NSInvocationOperation *operation = [[NSInvocationOperation alloc]
initWithTarget:self
selector:@selector(loadImage:)
object:[[xmlParser data1] objectAtIndex:indexPath.row]];
[queue addOperation:operation];
[operation release];
[cell.contentView addSubview:img_view];
-(void)loadImage:(Book *)book
{
[activityIndicator startAnimating];
NSString *imgurl=[book image_url];
NSURL *url=[[NSURL alloc]initWithString:imgurl];
NSData *img=[[NSData alloc]initWithContentsOfURL:url];
UIImage *image=[UIImage imageWithData:img];
img_view.image=image;
[activityIndicator stopAnimating];
}
+0
如果你想要更多的幫助請求 – 2012-03-01 05:18:18
+0
你能給我發送樣本代碼嗎? – 2012-03-01 23:19:38
+0
這是更多的示例代碼 – 2012-03-02 04:11:35
1
您可以在谷歌搜索使用「懶加載圖像的tableview」。
它也適用於蘋果的例子。
相關問題
- 1. Http圖像解析問題
- 2. 解析C#中的Json圖像問題#
- 3. iphone中的圖像問題
- 4. iphone JSON解析objectForKey問題
- 5. iPhone XML解析問題
- 6. iPhone XML解析問題
- 7. json解析iphone sdk問題?
- 8. xml解析iphone問題
- 9. Libxml解析器iphone問題
- 10. iPhone json解析問題
- 11. iphone xml解析問題
- 12. Xcode解析RSS圖像的XML問題
- 13. iphone中的Json數組解析問題
- 14. Android/iPhone圖像解析
- 15. 如何在iphone中解析此問題
- 16. iPhone上的圖像問題
- 17. 關於從圖像標記解析圖像url的問題
- 18. iPhone SDK:解析JSON的問題
- 19. iPhone中的圖像緩存問題
- 20. 在iPhone中捕捉圖像的問題?
- 21. 圖像對齊問題 - iPhone
- 22. 解析肥皂響應問題(iphone/touchxml)
- 23. iPhone SDK - 問題從RSS源解析XML
- 24. iPhone:解析響應字典問題:
- 25. 在iPhone中使用NSXML解析器解析SOAP響應中的問題?
- 26. 解析中的問題
- 27. 解析Android中的問題
- 28. 解析中的問題
- 29. 解析XML中的問題
- 30. 解析問題
放置活動指示器直到它下載加載 – 2012-03-01 05:15:14
UItablView和NSMutableArray,NSMusicDirectory也從Apple文檔讀取「https://github.com/rs/SDWebImage」 – 2012-03-01 05:18:47
看看這個鏈接..... panagtakdo.com/文件/ MyAsynchronousImageLoader/MyAsynchronousImageLoader.zip – Narayana 2012-03-01 05:20:21