An open API service indexing awesome lists of open source software.

https://github.com/vitoziv/vicmaimageview

Content Mode Animatable Image View, change image view's content mode with your animation!
https://github.com/vitoziv/vicmaimageview

imageview ios

Last synced: about 1 year ago
JSON representation

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

Awesome Lists containing this project

README

          

# VICMAImageView - Content Mode Animatable Image View

Change image view's content mode with your animation!

![demo.gif](http://i.imgur.com/yWSyuq3.gif)

## Installation

**CocoaPods**

`pod 'VICMAImageView', '~> 1.0'`

## Usage

Use VICMAImageView like a UIImageView

```Objc
- (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

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

##License

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