NoticeViewController.h 886 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. #pragma mark - Instance Methods
  20. - (IBAction)btnCloseTouched:(id)sender;
  21. @end
  22. @interface NoticeTableViewCell : KNTableViewCell
  23. @property (weak, nonatomic) IBOutlet CustomImageView *imgvStatus;
  24. @property (weak, nonatomic) IBOutlet CustomLabel *lblContent;
  25. @property (weak, nonatomic) IBOutlet CustomLabel *lblCreateDatetime;
  26. @end