blob: 7ea803093dfd7fb813b88266ce8b281d4dfc55bd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//
// ChatViewController.h
// Juick
//
// Created by Vitaly Takmazov on 04/03/2018.
// Copyright © 2018 com.juick. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "User.h"
@interface ChatViewController : UITableViewController
@property(nonatomic, strong) NSMutableArray *messages;
@property(nonatomic, strong) NSString *uname;
@end
|