Files
ManagerDemo/Pods/DTCoreText/Core/Source/DTDictationPlaceholderView.h
T
2014-08-08 13:27:54 +08:00

28 lines
706 B
Objective-C

//
// DTDictationPlaceholderView.h
// DTRichTextEditor
//
// Created by Oliver Drobnik on 05.02.13.
// Copyright (c) 2013 Cocoanetics. All rights reserved.
//
#import <UIKit/UIKit.h>
/**
A dictation placeholder to display in editors between the time the recording is complete until a recognized response is received.
*/
@interface DTDictationPlaceholderView : UIView
/**
Creates an appropriately sized DTDictationPlaceholderView with 3 animated purple dots
*/
+ (DTDictationPlaceholderView *)placeholderView;
/**
The context of the receiver. This can be any object, for example the selection range to replace with the dictation result text
*/
@property (nonatomic, strong) id context;
@end