| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // FaqViewController.h
- // OneCable
- //
- // Created by nComz on 2017. 4. 4..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- #import "KNTableViewCell.h"
- @class CustomButton;
- @class CustomLabel;
- @class CustomTableViewCell;
- @class CustomImageView;
- @interface FaqViewController : JDViewController
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
- @property (weak, nonatomic) IBOutlet CustomButton *btnClose;
- @end
- @interface FaqTableViewCell : KNTableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblContent;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblCreateDatetime;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblCount;
- @end
|