| 1234567891011121314151617181920 |
- //
- // 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) UIImageView *imageView;
- @property (nonatomic , copy) void (^blk_Add)();
- @property (nonatomic , copy) void (^blk_Select)(NSString* file);
- @end
|