mirror of
https://github.com/wu736139669/ManagerDemo.git
synced 2026-08-05 05:55:42 +00:00
23 lines
542 B
Objective-C
23 lines
542 B
Objective-C
//
|
|
// DTTextAttachmentObject.h
|
|
// DTCoreText
|
|
//
|
|
// Created by Oliver Drobnik on 22.04.13.
|
|
// Copyright (c) 2013 Drobnik.com. All rights reserved.
|
|
//
|
|
|
|
#import "DTTextAttachment.h"
|
|
|
|
/**
|
|
A specialized subclass in the DTTextAttachment class cluster to represent an generic object
|
|
*/
|
|
|
|
@interface DTObjectTextAttachment : DTTextAttachment <DTTextAttachmentHTMLPersistence>
|
|
|
|
/**
|
|
The DTHTMLElement child nodes of the receiver. This array is only used for object tags at the moment.
|
|
*/
|
|
@property (nonatomic, strong) NSArray *childNodes;
|
|
|
|
@end
|