DocListTableViewCell.h 985 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // DocListTableViewCell.h
  3. // Granite Expo eSign
  4. //
  5. // Created by Ray on 12/29/16.
  6. // Copyright © 2016 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface DocListTableViewCell : UITableViewCell
  10. @property (strong, nonatomic) IBOutlet UILabel *labelDocID;
  11. @property (strong, nonatomic) IBOutlet UILabel *labelCustomer;
  12. @property (strong, nonatomic) IBOutlet UILabel *labelJobDate;
  13. @property (strong, nonatomic) IBOutlet UILabel *labelAgent;
  14. @property (strong, nonatomic) IBOutlet UILabel *labelSignDate;
  15. @property (strong, nonatomic) IBOutlet UILabel *labelExtInfo;
  16. @property (weak, nonatomic) IBOutlet UIImageView *Icon_img;
  17. @property (weak, nonatomic) IBOutlet UIImageView *Icon_file;
  18. @property (weak, nonatomic) IBOutlet UIImageView *Icon_notes;
  19. @property (weak, nonatomic) IBOutlet UILabel *label_img;
  20. @property (weak, nonatomic) IBOutlet UILabel *label_file;
  21. @property (weak, nonatomic) IBOutlet UILabel *label_notes;
  22. @end