EXPhotoViewer
EXPhotoViewer copied to clipboard
Thanks!
It was very easy to integrate with Swift:
- Drag EXPhotoViewer.h EXPhotoViewer.m to project
- Add EXPhotoViewer.h to header File
- Add in "EXPhotoViewer.h"
- (void) someMethod:(UIImageView_) image;
- Add in "EXPhotoViewer.m" " - (void) someMethod:(UIImageView_) image; { [self showImageFrom:image]; } In your Swift file: var instanceOfCustomObject: EXPhotoViewer = EXPhotoViewer() instanceOfCustomObject.someMethod(imageView)
Thanks man! Just saved me some hours trying to get it to work!