mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 19:18:06 +00:00
29 lines
640 B
Objective-C
29 lines
640 B
Objective-C
//
|
|
// ChatConversationCreateCollectionViewController.m
|
|
// linphone
|
|
//
|
|
// Created by REIS Benjamin on 03/10/2017.
|
|
//
|
|
|
|
#import "ChatConversationCreateCollectionViewController.h"
|
|
|
|
@interface ChatConversationCreateCollectionViewController ()
|
|
|
|
@end
|
|
|
|
@implementation ChatConversationCreateCollectionViewController
|
|
|
|
static NSString * const reuseIdentifier = @"Cell";
|
|
|
|
- (void)viewDidLoad {
|
|
[super viewDidLoad];
|
|
|
|
// Register cell classes
|
|
[self.collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:reuseIdentifier];
|
|
}
|
|
|
|
- (void)didReceiveMemoryWarning {
|
|
[super didReceiveMemoryWarning];
|
|
}
|
|
|
|
@end
|