// // VideoTextFiled.h // DeviceManageIOSApp // // Created by rushanting on 2017/5/22. // Copyright © 2017年 tencent. All rights reserved. // #import @class VideoTextFiled; /** 字幕输入view,进行文字输入,拖动,放大,旋转等 */ @interface VideoTextBubble @property(nonatomic , strong) UIImage *image; @property(nonatomic , assign) CGRect textNormalizationFrame; @end @protocol VideoTextFieldDelegate - (void)onBubbleTap; - (void)onTextInputBegin; - (void)onTextInputDone:(NSString*)text; - (void)onRemoveTextField:(VideoTextFiled*)textField; @end @interface VideoTextFiled : UIView @property (nonatomic, weak) id delegate; @property (nonatomic, copy, readonly) NSString* text; @property (nonatomic, readonly) UIImage* textImage; //生成字幕image - (void)setTextBubbleImage:(UIImage *)image textNormalizationFrame:(CGRect)frame; - (CGRect)textFrameOnView:(UIView*)view; //关闭键盘 - (void)resignFirstResponser; @end