diff options
author | Vitaly Takmazov | 2023-05-13 18:06:44 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2023-05-14 01:15:35 +0300 |
commit | ea7006ad743375855fab434f4e6e9caf4274bfb5 (patch) | |
tree | 6c18f47b81e070407c57fa1b6dd9dd2363f6197d /Juick/Views/MessageInputView.h | |
parent | cc94c2555c22cd51722034ac1ff02a0c041653c4 (diff) |
MessageInputView conversion
Diffstat (limited to 'Juick/Views/MessageInputView.h')
-rw-r--r-- | Juick/Views/MessageInputView.h | 29 |
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 |