0
我試圖從一個URL並顯示下載的圖像進入細胞(下面的示例):圖像不正確裝入的UIImageView
NSURL *url = [NSURL URLWithString:@"http://images.google.com/intl/en_ALL/images/logos/images_logo_lg.gif"];
NSData *data = [NSData dataWithContentsOfURL:url];
[cell.imageView setImage:[UIImage imageWithData:data]];
不知怎的,當我顯示進入細胞內,它覆蓋整個單元格,比我的UIImageView大。
但是如果我在本地顯示的圖像象下面這樣:
[cell.imageView setImage:[UIImage imageNamed:@"defaultProfile.png"]];
它完美地融入我設置進入細胞的UIImageView的。
爲什麼會出現這種情況?