FaqDetailViewController.h 476 B

1234567891011121314151617181920212223
  1. //
  2. // FaqDetailViewController.h
  3. // OneCable
  4. //
  5. // Created by nComz on 2017. 4. 21..
  6. // Copyright © 2017년 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomButton;
  10. @interface FaqDetailViewController : JDViewController
  11. @property (weak, nonatomic) IBOutlet CustomButton *btnClose;
  12. @property (weak, nonatomic) IBOutlet UIWebView *m_webView;
  13. @property (weak, nonatomic) NSString *detail_Url;
  14. @property (strong, nonatomic) FaqModel *m_faq;
  15. @end