ImageScrollerViewController.h 561 B

123456789101112131415161718
  1. //
  2. // ImageScrollerViewController.h
  3. // RedAnt ERP Mobile
  4. //
  5. // Created by Ray on 12/18/15.
  6. // Copyright © 2015 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ImageScrollerView.h"
  10. @interface ImageScrollerViewController : UIViewController
  11. @property int index;
  12. @property (nonatomic , strong) NSMutableArray * data;
  13. @property (nonatomic , strong) UIButton * btn_close;
  14. - (id)initWithSourceData:(NSMutableArray *)data withIndex:(NSInteger)index;
  15. @property (nonatomic , strong) ImageScrollerView *imgShowView;
  16. @end