TCTextAddView.h 393 B

1234567891011121314151617181920212223
  1. //
  2. // TCTextAddView.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. @protocol TCTextAddViewDelegate <NSObject>
  10. - (void)onAddTextBtnClicked;
  11. @end
  12. @interface TCTextAddView : UIView
  13. @property (nonatomic, weak) id<TCTextAddViewDelegate> delegate;
  14. - (void)setEdited:(BOOL)isEdited;
  15. @end