summaryrefslogtreecommitdiff
path: root/Juick/Views/MessageInputView.m
blob: c4d96de1930871ff3a388fc1866bc89c82f7e317 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
//  MessageInputView.m
//  Juick
//
//  Created by Vitaly Takmazov on 08/04/2018.
//  Copyright © 2018 com.juick. All rights reserved.
//

#import "MessageInputView.h"

@implementation MessageInputView

-(void) awakeFromNib {
    [super awakeFromNib];
    [self setTintColor:[UIColor colorNamed:@"Title"]];
}

- (IBAction)sendPressed:(id)sender {
    [self.delegate textSent:self.textView.text];
    self.textView.text = nil;
}
@end