-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImageUtility.swift
72 lines (39 loc) · 1.79 KB
/
ImageUtility.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
//
// ImageUtility.swift
//
//
// Created by Tanmoy on 15/04/17.
// Copyright © 2017 Tanmoy Khanra. All rights reserved.
//
import UIKit
import Foundation
extension UIImageView{
func fetchImageFromUrl(url:String) -> UIImage{
let catPictureURL = URL(string: url)!
let session = URLSession(configuration: .default)
let cache = NSCache<AnyObject, AnyObject>()
if (cache.object(forKey: "userProfilePic" as AnyObject) != nil){
}else{
let downloadPicTask = session.dataTask(with: catPictureURL) { (data, response, error) in
if let e = error {
print("Error downloading cat picture: \(e)")
} else {
if let res = response as? HTTPURLResponse {
print("Downloaded cat picture with response code \(res.statusCode)")
if let imageData = data {
self.image = UIImage(data: imageData)
let img = UIImage(data:imageData)
cache.setObject(img!, forKey: "userProfilePic" as AnyObject)
} else {
print("Couldn't get image: Image is nil")
}
} else {
print("Couldn't get response code for some reason")
}
}
}
downloadPicTask.resume()
}
return self.image!
}
}