画像の URL (http://www.example.com/logo.png) を取得しましたが、それを使用して画像を表示する方法がわかりません。
テーブルビューコントローラーから詳細コントローラーに、変数を使用してURLを「プッシュ」していますselectedImage
私はそれが次のようなものであるべきだと思います:
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 320, 104)];
[imageView setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"%@", selectedImage]]];
[self.view addSubview:imageView];
[self.view sendSubviewToBack:imageView];
しかし、それは画像を表示しません。