TCVideoTextFiled.h 642 B

1234567891011121314151617181920212223242526272829
  1. //
  2. // TCVideoTextFiled.h
  3. // DeviceManageIOSApp
  4. //
  5. // Created by rushanting on 2017/5/22.
  6. // Copyright © 2017年 tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class TCVideoTextFiled;
  10. @protocol TCVideoTextFieldDelegate <NSObject>
  11. - (void)onTextInputDone:(NSString*)text;
  12. - (void)onRemoveTextField:(TCVideoTextFiled*)textField;
  13. @end
  14. @interface TCVideoTextFiled : UIView
  15. @property (nonatomic, weak) id<TCVideoTextFieldDelegate> delegate;
  16. @property (nonatomic, copy, readonly) NSString* text;
  17. @property (nonatomic, readonly) UIImage* textImage;
  18. - (CGRect)textFrameOnView:(UIView*)view;
  19. - (void)resignFirstResponser;
  20. @end