Guest User

Untitled

a guest
May 22nd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. #import <Foundation/Foundation.h>
  2. #import <libxml/HTMLparser.h>
  3. #import "DDXMLDocument.h"
  4.  
  5. @interface DDXMLDocument (HTML)
  6.  
  7. - (id)initWithHTMLString:(NSString *)string
  8. options:(NSUInteger)options
  9. error:(NSError **)error;
  10.  
  11. - (id)initWithHTMLData:(NSData *)data
  12. options:(NSUInteger)options
  13. error:(NSError **)error;
  14.  
  15. - (id)initWithData:(NSData *)data
  16. options:(NSUInteger)options
  17. error:(NSError **)error;
  18.  
  19. @end
Add Comment
Please, Sign In to add comment