// // ImageUploadViewController.h // RedAnt ERP Mobile // // Created by Ray on 11/4/15. // Copyright © 2015 United Software Applications, Inc. All rights reserved. // #import @interface ImageUploadViewController : UIViewController @property (strong, nonatomic) IBOutlet UIImageView *imgview; @property (strong, nonatomic) IBOutlet UIButton *buttonAlbum; @property (strong, nonatomic) IBOutlet UIButton *buttonCamera; @property (strong, nonatomic) IBOutlet UIButton *buttonUpload; @property (strong, nonatomic) IBOutlet UIProgressView *uploadProgress; @property (nonatomic , copy) void (^returnValue)(NSString* url_down,NSString* url_up,UIImage* img); @property bool dirty; @property (strong, nonatomic) UIImage* img; @end