ASRView.h 466 B

1234567891011121314151617181920212223242526
  1. //
  2. // ASRView.h
  3. // YBVideo
  4. //
  5. // Created by YunBao on 2018/7/31.
  6. // Copyright © 2018年 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #define ASRHeight 260
  10. typedef void (^ASRBlock)(NSString *type,NSString *content);
  11. @interface ASRView : UIView
  12. @property(nonatomic,copy)ASRBlock asrEvent;
  13. @property(nonatomic,strong)MyTextView *textView; //输入框
  14. - (instancetype)initWithFrame:(CGRect)frame callBack:(ASRBlock)asrBack;
  15. @end