No Description

GalleryScrollView.h 500B

12345678910111213141516171819202122
  1. //
  2. // GalleryScrollView.h
  3. // FirstLink
  4. //
  5. // Created by Lemon on 14/12/24.
  6. // Copyright (c) 2014年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface GalleryScrollView : UIScrollView
  10. @property (nonatomic, copy) void (^touchCallBack)(GalleryScrollView *scrollView, int index);
  11. @property (nonatomic, assign) int index;
  12. - (void)setContentWithFrame:(CGRect)rect initRect:(CGRect)initRect;
  13. - (void)setImage:(UIImage *)image;
  14. - (void)setAnimationRect;
  15. - (void)resetFrame;
  16. @end