blob: 5dd3d62149e950fd7161e66dd121054b35edd28c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//
// MessageInputView.m
// Juick
//
// Created by Vitaly Takmazov on 03/12/2017.
// Copyright © 2017 com.juick. All rights reserved.
//
#import "QuoteView.h"
@implementation QuoteView
-(void) awakeFromNib {
[super awakeFromNib];
self.contentView.backgroundColor = [UIColor colorNamed:@"Background"];
}
@end
|