summaryrefslogtreecommitdiff
path: root/Juick/Views/MessageInputView.h
diff options
context:
space:
mode:
Diffstat (limited to 'Juick/Views/MessageInputView.h')
-rw-r--r--Juick/Views/MessageInputView.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/Juick/Views/MessageInputView.h b/Juick/Views/MessageInputView.h
deleted file mode 100644
index 9cf3652..0000000
--- a/Juick/Views/MessageInputView.h
+++ /dev/null
@@ -1,29 +0,0 @@
-//
-// MessageInputView.h
-// Juick
-//
-// Created by Vitaly Takmazov on 08/04/2018.
-// Copyright © 2018 com.juick. All rights reserved.
-//
-
-#import <UIKit/UIKit.h>
-
-@protocol MessageInputDelegate <NSObject>
-
--(void) textSent:(NSString *)text;
-
-@end
-
-@interface MessageInputView : UIVisualEffectView<UITextViewDelegate>
-@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<MessageInputDelegate> delegate;
-
-@end