react-native-navigation的迁移库

VICMAImageView.h 427B

12345678910111213141516171819202122232425
  1. //
  2. // VIAnimatableImageView.h
  3. // VIAnimatableImageViewDemo
  4. //
  5. // Created by Vito on 12/30/14.
  6. // Copyright (c) 2014 Vito. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. /**
  10. * Content mode animatable image view.
  11. */
  12. @interface VICMAImageView : UIView
  13. @property (nonatomic, strong) UIImage *image;
  14. - (instancetype)initWithImage:(UIImage *)image;
  15. // The image presentation size
  16. - (CGSize)presentationImageSize;
  17. @end