• Stars
    star
    191
  • Rank 202,877 (Top 4 %)
  • Language
    Objective-C
  • License
    MIT License
  • Created almost 10 years ago
  • Updated almost 9 years ago

Reviews

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

Repository Details

Content Mode Animatable Image View, change image view's content mode with your animation!

VICMAImageView - Content Mode Animatable Image View

Change image view's content mode with your animation!

demo.gif

Installation

CocoaPods

pod 'VICMAImageView', '~> 1.0'

Usage

Use VICMAImageView like a UIImageView

- (void)viewDidLoad {
    [super viewDidLoad];
    UIImage *image = [UIImage imageNamed:@"1.jpg"];
    VICMAImageView *imageView = [[VICMAImageView alloc] initWithImage:image];
    imageView.frame = CGRectMake(0, 0, 100, 100);
    [self.view addSubview:imageView];
}

Animate contentMode in animation block

[UIView animateWithDuration:0.3
                     animations:^{
                         imageView.contentMode = UIViewContentModeScaleAspectFill;
                     }];

##License

VICMAImageView is available under the MIT license. See the LICENSE file for more info.