• Stars
    star
    227
  • Rank 175,900 (Top 4 %)
  • Language
    Objective-C
  • License
    MIT License
  • Created almost 10 years ago
  • Updated over 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

View a photo with simple and basic interactive gesture.

VIPhotoView

VIPhotoView is a view use to view a photo with simple and basic interactive gesture. Pinch to scale photo, double tap to scale photo, drag to scoll photo.

Screenshot

demo.gif

Installation

CocoaPods

pod 'VIPhotoView', '~> 0.1'

Usage

Init VIPhotoView with frame and image, than add it to a view.

- (void)viewDidLoad {
    [super viewDidLoad];

    UIImage *image = [UIImage imageNamed:@"test.jpg"];
    VIPhotoView *photoView = [[VIPhotoView alloc] initWithFrame:self.view.bounds andImage:image];
    photoView.autoresizingMask = (1 << 6) -1;
    
    [self.view addSubview:photoView];
}

##License

VIPhotoView is released under the MIT license.