// // TextInputView.h // TheoryNetwork // // Created by tederen on 2019/9/27. // Copyright © 2019 tederen. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN typedef void(^InputBlock)(NSString *); @interface TextInputView : UIView @property (nonatomic, copy) InputBlock inputBlock; - (void)setPlaceText:(NSString *)placeText; - (void)startAnimationWithY:(CGFloat)y; - (void)startEditing; @end NS_ASSUME_NONNULL_END