summaryrefslogtreecommitdiff
path: root/Juick/Views/QuoteView.m
blob: bb9cd75f5a8ea366c9bca3a6b567148ba6c23891 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
//  MessageInputView.m
//  Juick
//
//  Created by Vitaly Takmazov on 03/12/2017.
//  Copyright © 2017 com.juick. All rights reserved.
//

#import "QuoteView.h"
#import "ColorScheme.h"
@implementation QuoteView

-(void) awakeFromNib {
    [super awakeFromNib];
    self.contentView.backgroundColor = [ColorScheme headerBackground];
}

@end