| 1234567891011121314151617181920212223242526272829303132 |
- //
- // DocListTableViewCell.h
- // Granite Expo eSign
- //
- // Created by Ray on 12/29/16.
- // Copyright © 2016 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface DocListTableViewCell : UITableViewCell
- @property (strong, nonatomic) IBOutlet UILabel *labelDocID;
- @property (strong, nonatomic) IBOutlet UILabel *labelCustomer;
- @property (strong, nonatomic) IBOutlet UILabel *labelJobDate;
- @property (strong, nonatomic) IBOutlet UILabel *labelAgent;
- @property (strong, nonatomic) IBOutlet UILabel *labelSignDate;
- @property (strong, nonatomic) IBOutlet UILabel *labelExtInfo;
- @property (weak, nonatomic) IBOutlet UIImageView *Icon_img;
- @property (weak, nonatomic) IBOutlet UIImageView *Icon_file;
- @property (weak, nonatomic) IBOutlet UIImageView *Icon_notes;
- @property (weak, nonatomic) IBOutlet UILabel *label_img;
- @property (weak, nonatomic) IBOutlet UILabel *label_file;
- @property (weak, nonatomic) IBOutlet UILabel *label_notes;
- @end
|