// // 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 (weak, nonatomic) IBOutlet NSLayoutConstraint *textHeightConstraint; @property (weak, nonatomic) IBOutlet NSLayoutConstraint *topMarginConstraint; @property (strong, nonatomic) IBOutlet UITextView *textView; @property (weak, nonatomic) IBOutlet UIButton *sendButton; - (IBAction)sendPressed:(id)sender; @property (nonatomic, weak) id delegate; @end