12345678910111213141516171819202122 |
- //
- // GalleryScrollView.h
- // FirstLink
- //
- // Created by Lemon on 14/12/24.
- // Copyright (c) 2014年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface GalleryScrollView : UIScrollView
- @property (nonatomic, copy) void (^touchCallBack)(GalleryScrollView *scrollView, int index);
- @property (nonatomic, assign) int index;
- - (void)setContentWithFrame:(CGRect)rect initRect:(CGRect)initRect;
- - (void)setImage:(UIImage *)image;
- - (void)setAnimationRect;
- - (void)resetFrame;
- @end
|