| 123456789101112131415161718192021222324252627 |
- //
- // FaqDetailViewController.h
- // OneCable
- //
- // Created by nComz on 2017. 4. 21..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomButton;
- @interface FaqDetailViewController : JDViewController
- @property (weak, nonatomic) IBOutlet CustomButton *btnClose;
- @property (weak, nonatomic) IBOutlet UIWebView *m_webView;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblCount;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- //@property (weak, nonatomic) NSString *detail_Url;
- @property (weak, nonatomic) NSString *detail_count;
- @property (strong, nonatomic) FaqModel *faqModel;
- @end
|