ImageScrollerViewController.h 660 B

1234567891011121314151617181920
  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. @property bool use_url;
  15. - (id)initWithSourceData:(NSMutableArray *)data withIndex:(NSInteger)index;
  16. - (id)initWithSourceURL:(NSMutableArray *)urls withIndex:(NSInteger)index;
  17. @property (nonatomic , strong) ImageScrollerView *imgShowView;
  18. @end