forked from mirrors/linphone-iphone
32 lines
784 B
Objective-C
32 lines
784 B
Objective-C
//
|
|
// UIChatConversationInfoTableViewCell.m
|
|
// linphone
|
|
//
|
|
// Created by REIS Benjamin on 23/10/2017.
|
|
//
|
|
|
|
#import "PhoneMainView.h"
|
|
#import "UIChatConversationImdnTableViewCell.h"
|
|
|
|
@implementation UIChatConversationImdnTableViewCell
|
|
|
|
- (void)awakeFromNib {
|
|
[super awakeFromNib];
|
|
// Initialization code
|
|
}
|
|
|
|
- (id)initWithIdentifier:(NSString *)identifier {
|
|
self = [super initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
|
|
if (self != nil) {
|
|
NSArray *arrayOfViews =
|
|
[[NSBundle mainBundle] loadNibNamed:NSStringFromClass(self.class) owner:self options:nil];
|
|
if ([arrayOfViews count] >= 1) {
|
|
UIChatConversationImdnTableViewCell *sub = ((UIChatConversationImdnTableViewCell *)[arrayOfViews objectAtIndex:0]);
|
|
self = sub;
|
|
}
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|
|
|