This commit is contained in:
2014-08-08 13:27:54 +08:00
parent a7f10ddcbb
commit 698a479191
291 changed files with 53278 additions and 515 deletions
+28
View File
@@ -0,0 +1,28 @@
//
// DTHTMLParserTextNode.h
// DTCoreText
//
// Created by Oliver Drobnik on 26.12.12.
// Copyright (c) 2012 Drobnik.com. All rights reserved.
//
#import "DTHTMLParserNode.h"
/**
Specialized sub class of <DTHTMLParserNode> that represents text inside a node
*/
@interface DTHTMLParserTextNode : DTHTMLParserNode
/**
Designated initializer with the characters that make up the text.
@param characters The characters of the string
@returns The initialized text node
*/
- (id)initWithCharacters:(NSString *)characters;
/**
Returns the receivers character contents
*/
@property (nonatomic, readonly) NSString *characters;
@end