blob: 38ce72101b081fd82eafe7234d716d826f226249 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//
// MessageInputView.h
// Juick
//
// Created by Vitaly Takmazov on 08/04/2018.
// Copyright © 2018 com.juick. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface MessageInputView : UIVisualEffectView
@property (strong, nonatomic) IBOutlet NSLayoutConstraint *bottomConstraint;
@property (strong, nonatomic) IBOutlet UITextField *textView;
@end
|