TextAddView.h 423 B

1234567891011121314151617181920212223242526
  1. //
  2. // TextAddView.h
  3. // DeviceManageIOSApp
  4. //
  5. // Created by rushanting on 2017/5/18.
  6. // Copyright © 2017年 tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. /**
  10. 视频编辑字幕添加view
  11. */
  12. @protocol TextAddViewDelegate <NSObject>
  13. - (void)onAddTextBtnClicked;
  14. @end
  15. @interface TextAddView : UIView
  16. @property (nonatomic, weak) id<TextAddViewDelegate> delegate;
  17. - (void)setEdited:(BOOL)isEdited;
  18. @end