// // SignatureListViewController.h // AntsContract // // Created by Ray on 12/19/16. // Copyright © 2016 United Software Applications, Inc. All rights reserved. // #import @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); @property CGSize signature_ratio; @end