TSHTMLViewController.h 782 B

123456789101112131415161718192021222324
  1. /**
  2. * Name: TechSupport
  3. * Type: iOS framework
  4. * Desc: iOS framework to assist in providing support for and receiving issue
  5. * reports and feedback from users.
  6. *
  7. * Author: Lance Fetters (aka. ashikase)
  8. * License: LGPL v3 (See LICENSE file for details)
  9. */
  10. #import <UIKit/UIKit.h>
  11. @interface TSHTMLViewController : UIViewController
  12. @property(nonatomic, readonly) UIWebView *webView;
  13. - (id)initWithHTMLContent:(NSString *)content;
  14. - (id)initWithHTMLContent:(NSString *)content dataDetector:(UIDataDetectorTypes)dataDetectors;
  15. - (id)initWithURL:(NSURL *)url;
  16. - (id)initWithURL:(NSURL *)url dataDetector:(UIDataDetectorTypes)dataDetectors;
  17. - (void)setContent:(NSString *)content;
  18. - (void)setURL:(NSURL *)url;
  19. @end
  20. /* vim: set ft=objc ff=unix sw=4 ts=4 tw=80 expandtab: */