mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
26 lines
611 B
Objective-C
26 lines
611 B
Objective-C
//
|
|
// NotificationTableViewCell.m
|
|
// richNotifications
|
|
//
|
|
// Created by David Idmansour on 26/06/2018.
|
|
//
|
|
|
|
#import "NotificationTableViewCell.h"
|
|
|
|
@implementation NotificationTableViewCell
|
|
|
|
- (void)awakeFromNib {
|
|
[super awakeFromNib];
|
|
// Initialization code
|
|
_contactImage.layer.cornerRadius = _contactImage.frame.size.height / 2;
|
|
_contactImage.clipsToBounds = YES;
|
|
[self.contentView sendSubviewToBack:_background];
|
|
}
|
|
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
|
[super setSelected:selected animated:animated];
|
|
|
|
// Configure the view for the selected state
|
|
}
|
|
|
|
@end
|