mirror of
https://github.com/wu736139669/ManagerDemo.git
synced 2026-08-05 05:55:42 +00:00
28 lines
706 B
Objective-C
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
|