| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- //
- // NoticeViewController.h
- // kneet2
- //
- // Created by Jason Lee on 10/8/15.
- // Copyright © 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- #import "KNTableViewCell.h"
- @class CustomButton;
- @class CustomLabel;
- @class CustomTableViewCell;
- @class CustomImageView;
- @interface NoticeViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
- @property (weak, nonatomic) IBOutlet CustomButton *btnClose;
- @property (weak, nonatomic) IBOutlet UIView *noContentView;
- #pragma mark - Instance Methods
- - (IBAction)btnCloseTouched:(id)sender;
- @end
- @interface NoticeTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomImageView *imgvStatus;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblContent;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblCreateDatetime;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblCount;
- @end
|