FSImageView 0.1.1

FSImageView 0.1.1

TestsTested
LangLanguage Obj-CObjective C
License MIT
ReleasedLast Release Sep 2015

Maintained by YongCao.



  • By
  • YongCao

This framework provide an easy way to use class to show full-size image when tapping on UIImageView.

The full-size image can be full screen or custom-size UIView. When user tap the customed UIImageVIew, there will be a animation transation between UIImageView and full-size UIView. Two delegates were prepared for actions during two transation process.

Take a look at the Example project to see how to use this library. You have to open the workspace, not the project file, since the Example project uses cocoapods.

Get in contact with the developer by Email: [email protected]

Installation

Usage

    FSImageView *fullSizeImage = [[FSImageView alloc] initWithBounds:self.view.bounds SuperView:self.view ImageView:cell.icon Image:cell.icon.image];
    fullSizeImage.delegate = self;
    [self.view addSubview:fullSizeImage];

delegate

    // call after original imageView tapped
    - (void) originalImageViewTapped;
    // call after full size imageView tapped
    - (void) fullSizeViewTapped;

Author

YongCao, [email protected]

License

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