mirror of
https://github.com/wu736139669/ManagerDemo.git
synced 2026-08-05 05:55:42 +00:00
add pods
This commit is contained in:
+28
@@ -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
|
||||
Reference in New Issue
Block a user