// // CommonEditorCellImg.h // RedAnt ERP Mobile // // Created by Ray on 11/4/15. // Copyright © 2015 United Software Applications, Inc. All rights reserved. // #import #import "TouchImageView.h" @interface CommonEditorCellImg : UITableViewCell @property (strong, nonatomic) IBOutlet UILabel *labelTitle; //@property (strong, nonatomic) IBOutlet UIButton *buttonImg0; //@property (strong, nonatomic) IBOutlet UIButton *buttonImg1; //@property (strong, nonatomic) IBOutlet UIButton *buttonImg2; @property (strong, nonatomic) IBOutlet TouchImageView *touchImageView0; @property (strong, nonatomic) IBOutlet TouchImageView *touchImageView1; @property (strong, nonatomic) IBOutlet TouchImageView *touchImageView2; @property bool local_store; @property (strong, nonatomic) NSMutableArray* imgs; @property (strong, nonatomic) IBOutlet UILabel *labelDescription; @property bool editable; @property bool img_validate; @property bool isFullScreen; @property (nonatomic , copy) void (^imgChanged)(NSString* url_down,NSString* url_up, int index,NSString* url_index); @end