MessageBoxViewController.h 902 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // MessageBoxViewController.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 10/14/15.
  6. // Copyright © 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. #import "KNTableViewCell.h"
  10. @class CustomButton;
  11. @class CustomLabel;
  12. @class CustomTableViewCell;
  13. @class CustomImageView;
  14. @interface MessageBoxViewController : JDViewController
  15. #pragma mark - Properties
  16. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  17. @property (weak, nonatomic) IBOutlet CustomButton *btnClose;
  18. #pragma mark - Instance Methods
  19. - (IBAction)btnCloseTouched:(id)sender;
  20. @end
  21. @interface MessageBoxTableViewCell : KNTableViewCell
  22. @property (weak, nonatomic) IBOutlet CustomImageView *imgvStatus;
  23. @property (weak, nonatomic) IBOutlet CustomLabel *lblContent;
  24. @property (weak, nonatomic) IBOutlet CustomLabel *lblSubContent;
  25. @property (weak, nonatomic) IBOutlet CustomLabel *lblReadDatatime;
  26. @end