We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 668decd commit 3c5cbadCopy full SHA for 3c5cbad
TFHppleElement.h
@@ -37,6 +37,8 @@
37
38
- (id) initWithNode:(NSDictionary *) theNode;
39
40
++ (TFHppleElement *) hppleElementWithNode:(NSDictionary *) theNode;
41
+
42
// Returns this tag's innerHTML content.
43
- (NSString *) content;
44
TFHppleElement.m
@@ -54,6 +54,11 @@ - (id) initWithNode:(NSDictionary *) theNode
54
return self;
55
}
56
57
++ (TFHppleElement *) hppleElementWithNode:(NSDictionary *) theNode {
58
+ return [[[[self class] alloc] initWithName:theNode] autorelease];
59
+}
60
61
+#pragma mark -
62
63
- (NSString *) content
64
{
0 commit comments