Skip to content
Snippets Groups Projects
ChatViewController.h 342 B
Newer Older
EthanRDoesMC's avatar
EthanRDoesMC committed
//
//  ChatViewController.h
//  brooklyn
//
//  Created by EthanRDoesMC on 1/5/21.
//

#import <UIKit/UIKit.h>
#import "ChatKit.h"

NS_ASSUME_NONNULL_BEGIN

@interface ChatViewController : UITableViewController
@property (nonatomic, strong) CKConversation * chat;
-(id)initWithConversation:(CKConversation *)chat;
@end

NS_ASSUME_NONNULL_END