Skip to content
Snippets Groups Projects
ChatViewController.h 369 B
Newer Older
  • Learn to ignore specific revisions
  • EthanRDoesMC's avatar
    EthanRDoesMC committed
    //
    //  ChatViewController.h
    //  brooklyn
    //
    //  Created by EthanRDoesMC on 1/5/21.
    //
    
    #import <UIKit/UIKit.h>
    #import "ChatKit.h"
    
    #import "BrooklynBridge.h"
    
    EthanRDoesMC's avatar
    EthanRDoesMC committed
    
    NS_ASSUME_NONNULL_BEGIN
    
    @interface ChatViewController : UITableViewController
    @property (nonatomic, strong) CKConversation * chat;
    -(id)initWithConversation:(CKConversation *)chat;
    @end
    
    NS_ASSUME_NONNULL_END