MessageBoxViewController.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 CustomLabel *lblTitle;
  17. @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
  18. @property (weak, nonatomic) IBOutlet CustomButton *btnClose;
  19. @property (weak, nonatomic) IBOutlet UIView *noContentView;
  20. #pragma mark - Instance Methods
  21. - (IBAction)btnCloseTouched:(id)sender;
  22. @end
  23. @interface MessageBoxTableViewCell : KNTableViewCell
  24. @property (weak, nonatomic) IBOutlet CustomImageView *imgvStatus;
  25. @property (weak, nonatomic) IBOutlet CustomLabel *lblContent;
  26. @property (weak, nonatomic) IBOutlet CustomLabel *lblReadDatatime;
  27. //@property (weak, nonatomic) IBOutlet UIView *containerView;
  28. //@property (weak, nonatomic) IBOutlet CustomLabel *lblSubContent;
  29. //@property (weak, nonatomic) IBOutlet CustomButton *btnSubContent;
  30. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintImgvClockTop;
  31. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintContainerViewTop;
  32. @end