我需要在iOS應用程序中通過UIImageView在https(例如https://ton.twitter.com/1.1/ton/data/dm/433966760199725056/433966760212332544/du3THdSe.png)中顯示圖像。此圖片在瀏覽器中打開,但在UIImageView的使用這些方法沒有顯示:https圖像不在UIImageView上顯示
NSURL *url = [NSURL URLWithString:@"https://ton.twitter.com/1.1/ton/data/dm/433966760199725056/433966760212332544/du3THdSe.png"];
UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:url]];
imageView.image = image;
或
// using SDWebImage
[imageView setImageWithURL:[NSURL URLWithString:@"https://ton.twitter.com/1.1/ton/data/dm/433966760199725056/433966760212332544/du3THdSe.png"] placeholderImage:nil];
我怎樣才能顯示此圖像?
@徐寅,謝謝。 – Alex