1
我從使用URL下載的圖像:圖像從URL下載是模糊時在的UIImageView
UIImage *someImage = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:myImageURL]]];
UIImageView *someImageView = [[UIImageView alloc]initWithImage:someImage];
的圖像的尺寸爲iPad 3所以它是1536個* 800像素。當我下載並顯示圖像時,它可以正確顯示,但在iPad 2和iPad 3上,它非常模糊,看起來像是放大了768 x 400像素的圖像。
我該如何更好地解決這個問題?