mirror of
https://github.com/wu736139669/ManagerDemo.git
synced 2026-08-05 05:55:42 +00:00
25 lines
717 B
Objective-C
25 lines
717 B
Objective-C
//
|
|
// DTDictationPlaceholderTextAttachment.h
|
|
// DTCoreText
|
|
//
|
|
// Created by Oliver Drobnik on 06.02.13.
|
|
// Copyright (c) 2013 Drobnik.com. All rights reserved.
|
|
//
|
|
|
|
#import "DTTextAttachment.h"
|
|
|
|
/**
|
|
This is a special subclass of DTTextAttachment used to represent the dictation placeholder.
|
|
|
|
When encountering such an element DTAttributedTextContentView does not call the delegate to provide a subclass but automatically creates and adds a DTDictationPlaceholderView.
|
|
*/
|
|
|
|
@interface DTDictationPlaceholderTextAttachment : DTTextAttachment
|
|
|
|
/**
|
|
The string that inserting the dictation placeholder replaced, used for Undoing
|
|
*/
|
|
@property (nonatomic, retain) NSAttributedString *replacedAttributedString;
|
|
|
|
@end
|