// // MessageInputView.h // Juick // // Created by Vitaly Takmazov on 08/04/2018. // Copyright © 2018 com.juick. All rights reserved. // #import @protocol MessageInputDelegate -(void) textSent:(NSString *)text; @end @interface MessageInputView : UIVisualEffectView @property (strong, nonatomic) IBOutlet NSLayoutConstraint *bottomConstraint; @property (strong, nonatomic) IBOutlet UITextField *textView; - (IBAction)sendPressed:(id)sender; @property (nonatomic, weak) id delegate; @end