Je souhaite afficher une image sur UIImageView
à l'aide d'une URL et de NSString
. Je suis incapable de montrer l'image.
Mon code est:
UIImageView *view_Image = [[UIImageView alloc]initWithFrame:CGRectMake(view_Image_Pos_X, view_Image_Pos_Y, 179, 245)];
view_Image.backgroundColor = [UIColor greenColor];
view_Image.tag = img;
view_Image.userInteractionEnabled=YES;
view_Image.autoresizesSubviews = YES;
view_Image.alpha = 0.93;
[self.view addSubview:view_Image];
Voici ce que j'essaye:
if (img == 0) {
NSString *url_Img1 = @"http://opensum.in/app_test_f1/;";
NSString *url_Img2 = @"45djx96.jpg";
NSString *url_Img_FULL = [NSString stringWithFormat:@"%@%@", url_Img1,url_Img2];
NSLog(@"Show url_Img_FULL: %@",url_Img_FULL);
NSURL *url_img = [NSURL URLWithString:url_Img_FULL];
NSLog(@"Show: url_img %@",url_img);
// Here below line working perfectly and image is showing
view_Image.image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://opensum.in/app_test_f1/45djx96.jpg"]]]; // working code
mais je ne veux pas cela, je veux concataner deux url faire une url (c'est-à-dire; url_Img_FULL) et ensuite passer à une image comme celle ci-dessous:
UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:url_Img_FULL]]]; // Not Working
Je veux de "url_Img_FULL" (c'est-à-dire: combinaison de deux URL) L'image montrera. Vous pouvez également vérifier que l'URL fonctionne correctement. Une idée?
NSString *url_Img1 = @"http://opensum.in/app_test_f1";
NSString *url_Img2 = @"45djx96.jpg";
NSString *url_Img_FULL = [url_Img1 stringByAppendingPathComponent:url_Img2];
NSLog(@"Show url_Img_FULL: %@",url_Img_FULL);
view_Image.image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:url_Img_FULL]]];
essaye ça.
Simplement fais-le
NSString *imgURL = @"imagUrl";
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:imgURL]];
[YourImgView setImage:[UIImage imageWithData:data]];
Utilisation de GCD: Si vous ne souhaitez pas suspendre votre application, vous pouvez télécharger votre image en arrière-plan.
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
NSString *imgURL = @"imagUrl";
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:imgURL]];
//set your image on main thread.
dispatch_async(dispatch_get_main_queue(), ^{
[YourImgView setImage:[UIImage imageWithData:data]];
});
});
Pour Swift 3.0
class ImageLoader {
var cache = NSCache<AnyObject, AnyObject>()
class var sharedLoader : ImageLoader {
struct Static {
static let instance : ImageLoader = ImageLoader()
}
return Static.instance
}
func imageForUrl(urlString: String, completionHandler:@escaping (_ image: UIImage?, _ url: String) -> ()) {
DispatchQueue.global().async {
let data: NSData? = self.cache.object(forKey: urlString as AnyObject) as? NSData
if let goodData = data {
let image = UIImage(data: goodData as Data)
DispatchQueue.main.async {
completionHandler(image, urlString)
}
return
}
let url:NSURL = NSURL(string: urlString)!
let task = URLSession.shared.dataTask(with: url as URL) {
data, response, error in
if (error != nil) {
print(error?.localizedDescription)
completionHandler(nil, urlString)
return
}
if data != nil {
let image = UIImage(data: data!)
self.cache.setObject(data as AnyObject, forKey: urlString as AnyObject)
DispatchQueue.main.async {
completionHandler(image, urlString)
}
return
}
}
task.resume()
}
}
}
Utilisation
ImageLoader.sharedLoader.imageForUrl(urlString: imageUrl as! String) { (image, url) in
self.imageView.image = image
}
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
NSString *str = self.recordlarge[@"images"];
NSLog(@"Project Gallery id Record : %@",str);
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:str]];
dispatch_async(dispatch_get_main_queue(), ^{
[self.myimagelarge setImage:[UIImage imageWithData:data]];
});
});
Pour Swift 3.0
Synchrone:
if let filePath = Bundle.main().pathForResource("imageName", ofType: "jpg"), image = UIImage(contentsOfFile: filePath) {
imageView.contentMode = .scaleAspectFit
imageView.image = image
}
Asynchrone:
Créez une méthode avec un gestionnaire d'achèvement pour extraire les données d'image de votre URL
func getDataFromUrl(url:URL, completion: ((data: Data?, response: URLResponse?, error: NSError? ) -> Void)) {
URLSession.shared().dataTask(with: url) {
(data, response, error) in
completion(data: data, response: response, error: error)
}.resume()
}
Créer une méthode pour télécharger l'image (démarrer la tâche)
func downloadImage(url: URL){
print("Download Started")
getDataFromUrl(url: url) { (data, response, error) in
DispatchQueue.main.sync() { () -> Void in
guard let data = data where error == nil else { return }
print(response?.suggestedFilename ?? url.lastPathComponent ?? "")
print("Download Finished")
self.imageView.image = UIImage(data: data)
}
}
}
Utilisation:
override func viewDidLoad() {
super.viewDidLoad()
print("Begin of code")
if let checkedUrl = URL(string: "http://www.Apple.com/euro/ios/ios8/a/generic/images/og.png") {
imageView.contentMode = .scaleAspectFit
downloadImage(url: checkedUrl)
}
print("End of code. The image will continue downloading in the background and it will be loaded when finished.")
}
Extension:
extension UIImageView {
func downloadedFrom(link: String, contentMode mode: UIViewContentMode = .scaleAspectFit) {
guard let url = URL(string: link) else { return }
contentMode = mode
URLSession.shared().dataTask(with: url) { (data, response, error) in
guard
let httpURLResponse = response as? HTTPURLResponse where httpURLResponse.statusCode == 200,
let mimeType = response?.mimeType where mimeType.hasPrefix("image"),
let data = data where error == nil,
let image = UIImage(data: data)
else { return }
DispatchQueue.main.sync() { () -> Void in
self.image = image
}
}.resume()
}
}
Utilisation:
override func viewDidLoad() {
super.viewDidLoad()
print("Begin of code")
imageView.downloadedFrom(link: "http://www.Apple.com/euro/ios/ios8/a/generic/images/og.png")
print("End of code. The image will continue downloading in the background and it will be loaded when finished.")
}
Obtenir une image du code suivant
NSData *imageUrl = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"Your image URL Here"]];
Puis définissez l'image en utilisant le code suivant
[UIImage imageWithData:imageUrl];
essaye ça
NSString* combinedString = [stringUrl1 stringByAppendingString stringUrl2];
J'ai testé votre URL et trouvé le problème.
Le problème est avec cette ligne:
NSString *url_Img1 = @"http://opensum.in/app_test_f1/;";
Vous ajoutez un ;
au dernier de la chaîne d'URL.
Ainsi, lorsque vous concatinez deux chaînes, cela ressemblera à: http://opensum.in/app_test_f1/;45djx96.jpg
Ce n'est pas une URL valide.
L'URL correcte est: http://opensum.in/app_test_f1/45djx96.jpg
Changer le code comme:
NSString *url_Img1 = @"http://opensum.in/app_test_f1/";
Ça va marcher.
pour afficher l'image de l'URL, vous pouvez essayer ceci ...
[ImageViewname setImageWithURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@",your url]]];
pour afficher l'image localement à partir de l'application, vous pouvez essayer cela ....
ImageViewname.image = [UIImage imageNamed:@"test.png"];
J'espère que cela t'aidera.
codage heureux ...
essayez AsyncImageView pour cette exigence, voir cet exemple