blob: 4ff78ce141fc71b2fa4246ff070a4efcaf6a4be5 (
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 whiteColor];
}
@end
|