| 123456789101112131415161718192021222324 |
- //
- // SignatureListViewController.h
- // AntsContract
- //
- // Created by Ray on 12/19/16.
- // Copyright © 2016 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface SignatureListViewController : UIViewController
- @property (strong, nonatomic) IBOutlet UITableView *tableView;
- @property (strong, nonatomic) NSMutableDictionary* signatureData;
- @property (strong, nonatomic) NSString* subType;
- @property (strong, nonatomic) IBOutlet UIBarButtonItem *bbAdd;
- @property bool can_fill;
- //@property (strong, nonatomic) UIImageView *imageView;
- @property (nonatomic , copy) void (^blk_Add)();
- @property (nonatomic , copy) void (^blk_Select)(NSString* file);
- @property (nonatomic , copy) void (^blk_Fill)(NSString* file, bool fillFullDoc);
- @end
|