// // ImageScrollerViewController.h // RedAnt ERP Mobile // // Created by Ray on 12/18/15. // Copyright © 2015 United Software Applications, Inc. All rights reserved. // #import #import "ImageScrollerView.h" @interface ImageScrollerViewController : UIViewController @property int index; @property (nonatomic , strong) NSMutableArray * data; @property (nonatomic , strong) UIButton * btn_close; @property bool use_url; - (id)initWithSourceData:(NSMutableArray *)data withIndex:(NSInteger)index; - (id)initWithSourceURL:(NSMutableArray *)urls withIndex:(NSInteger)index; @property (nonatomic , strong) ImageScrollerView *imgShowView; @end