gifViewController.h 626 B

123456789101112131415161718192021222324252627
  1. #import <UIKit/UIKit.h>
  2. @class SCGIFImageView;
  3. @protocol gifViewControllerDelegate <NSObject>
  4. - (void) selectGifWithString:(NSString *) str;
  5. @end
  6. @interface gifViewController : UIView <UIScrollViewDelegate>{
  7. NSMutableArray *_phraseArray;
  8. UIScrollView *_sv;
  9. UIPageControl* _pc;
  10. SCGIFImageView* _gifIv;
  11. BOOL pageControlIsChanging;
  12. NSInteger maxPage;
  13. int tempN;
  14. int margin;
  15. }
  16. @property (nonatomic, weak) id <gifViewControllerDelegate>delegate;
  17. @property (nonatomic, strong) NSMutableArray *faceArray;
  18. @property (nonatomic, strong) NSMutableArray *imageArray;
  19. @end