NoticeViewController.h 1008 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // NoticeViewController.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 10/8/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 NoticeViewController : 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 NoticeTableViewCell : KNTableViewCell
  24. @property (weak, nonatomic) IBOutlet CustomImageView *imgvStatus;
  25. @property (weak, nonatomic) IBOutlet CustomLabel *lblContent;
  26. @property (weak, nonatomic) IBOutlet CustomLabel *lblCreateDatetime;
  27. @property (weak, nonatomic) IBOutlet CustomLabel *lblCount;
  28. @end