单军华
2018-07-11 acdf41fa3b32b628d9d7bba1f975060567dad3d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/************************************************************
 *  * Hyphenate CONFIDENTIAL
 * __________________
 * Copyright (C) 2016 Hyphenate Inc. All rights reserved.
 *
 * NOTICE: All information contained herein is, and remains
 * the property of Hyphenate Inc.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Hyphenate Inc.
 */
 
 
#import <UIKit/UIKit.h>
 
typedef enum{
    EaseRecordViewTypeTouchDown,
    EaseRecordViewTypeTouchUpInside,
    EaseRecordViewTypeTouchUpOutside,
    EaseRecordViewTypeDragInside,
    EaseRecordViewTypeDragOutside,
}EaseRecordViewType;
 
@interface EaseRecordView : UIView
 
@property (nonatomic) NSArray *voiceMessageAnimationImages UI_APPEARANCE_SELECTOR;
 
@property (nonatomic) NSString *upCancelText UI_APPEARANCE_SELECTOR;
 
@property (nonatomic) NSString *loosenCancelText UI_APPEARANCE_SELECTOR;
 
/*
 @method
 @brief 录音按钮按下
 @discussion
 @param
 @result
 */
-(void)recordButtonTouchDown;
 
/*
 @method
 @brief 手指在录音按钮内部时离开
 @discussion
 @param
 @result
 */
-(void)recordButtonTouchUpInside;
 
/*
 @method
 @brief 手指在录音按钮外部时离开
 @discussion
 @param
 @result
 */
-(void)recordButtonTouchUpOutside;
 
/*
 @method
 @brief 手指移动到录音按钮内部
 @discussion
 @param
 @result
 */
-(void)recordButtonDragInside;
 
/*
 @method
 @brief 手指移动到录音按钮外部
 @discussion
 @param
 @result
 */
-(void)recordButtonDragOutside;
 
@end