| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // BasicModeViewController.h
- // RA Image
- //
- // Created by Jack on 2017/5/3.
- // Copyright © 2017年 USAI. All rights reserved.
- //
- #import "BasicViewController.h"
- #import "UIView+Toast.h"
- @class UploadViewController;
- @interface BasicModeViewController : BasicViewController<UINavigationControllerDelegate,UIImagePickerControllerDelegate>
- @property (nonatomic,copy) NSString *name;
- @property (nonatomic,copy) NSString *barcode;
- @property (nonatomic,copy) NSString *barcodeTitle;
- @property (nonatomic,assign) NSUInteger photoCount;
- @property (nonatomic,strong) NSMutableArray <NSMutableDictionary *> *photos;
- @property (nonatomic,copy) NSString *verify_msg0;
- - (void)addTasks;
- -(void) verify:(NSMutableDictionary*) params;
- - (void)showPhotoList;
- - (void)showScanner;
- - (void)clickCameraButton;
- - (void)showBarcodeInput:(UIKeyboardType)keyboardType;
- - (void)clearPhotos;
- - (void)showTopImage;
- - (void)moveTmpImageToCache:(NSString *)img;
- - (BOOL)shouldUploadWithCurrentNerworkStatus;
- - (NSDictionary *)saveSignature:(UIImage *)img;
- #pragma mark - 需要子类重写
- - (void)receiveImage:(UIImage *)img;
- @end
|