You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The simplest way to implement is by using the [UIImageView.setupImageViewer()](https://github.com/michaelhenry/MHFacebookImageViewer/blob/a17f8c47e6ad1fcc3c47a0a3b03ab0bfbdc9fc2d/Example/Demo/BasicViewController.swift#L11)
32
+
The simplest way to to use this is by using the [UIImageView.setupImageViewer()](https://github.com/michaelhenry/MHFacebookImageViewer/blob/master/Example/Demo/BasicViewController.swift#L11)
33
+
38
34
39
35
```swift
40
36
imageView.setupImageViewer()
@@ -43,18 +39,46 @@ imageView.setupImageViewer()
43
39
Example:
44
40
45
41
```swift
46
-
importMHFacebookImageViewer
42
+
importImageViewer_swift
47
43
48
44
let imageView =UIImageView()
49
45
imageView.image=UIImage(named: 'cat1')
50
46
...
51
47
imageView.setupImageViewer()
52
48
```
53
49
54
-
or you could also check the [Demo](Example) Project.
0 commit comments