mirror of
https://github.com/wu736139669/ManagerDemo.git
synced 2026-08-05 05:55:42 +00:00
23 lines
493 B
Objective-C
23 lines
493 B
Objective-C
//
|
|
// DTHTMLElementText.h
|
|
// DTCoreText
|
|
//
|
|
// Created by Oliver Drobnik on 26.12.12.
|
|
// Copyright (c) 2012 Drobnik.com. All rights reserved.
|
|
//
|
|
|
|
#import "DTHTMLElement.h"
|
|
|
|
/**
|
|
Specialized subclass of <DTHTMLElement> that deals with text. It represents a text node. The text inside a DTHTMLElement can consist of any number of such text nodes.
|
|
*/
|
|
|
|
@interface DTTextHTMLElement : DTHTMLElement
|
|
|
|
/**
|
|
The text content of the element.
|
|
*/
|
|
@property (nonatomic, strong) NSString *text;
|
|
|
|
@end
|