59 lines
1.2 KiB
Objective-C
59 lines
1.2 KiB
Objective-C
/*
|
|
Copyright 2018-2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
|
|
#import "RoomPredecessorBubbleCell.h"
|
|
|
|
#import "ThemeService.h"
|
|
#import "GeneratedInterface-Swift.h"
|
|
|
|
#pragma mark - Defines & Constants
|
|
|
|
static CGFloat const kCustomBackgroundCornerRadius = 5.0;
|
|
|
|
#pragma mark - Private Interface
|
|
|
|
@interface RoomPredecessorBubbleCell()
|
|
|
|
@property (weak, nonatomic) IBOutlet UIView *customBackgroundView;
|
|
|
|
@end
|
|
|
|
#pragma mark - Implementation
|
|
|
|
@implementation RoomPredecessorBubbleCell
|
|
|
|
#pragma mark - View life cycle
|
|
|
|
- (void)awakeFromNib
|
|
{
|
|
[super awakeFromNib];
|
|
|
|
// Disable text selection and link interaction
|
|
self.messageTextView.selectable = NO;
|
|
self.customBackgroundView.layer.masksToBounds = YES;
|
|
}
|
|
|
|
- (void)layoutSubviews
|
|
{
|
|
[super layoutSubviews];
|
|
|
|
self.customBackgroundView.layer.cornerRadius = kCustomBackgroundCornerRadius;
|
|
}
|
|
|
|
#pragma mark - Superclass Overrides
|
|
|
|
- (void)customizeTableViewCellRendering
|
|
{
|
|
[super customizeTableViewCellRendering];
|
|
|
|
self.messageTextView.tintColor = ThemeService.shared.theme.textPrimaryColor;
|
|
self.customBackgroundView.backgroundColor = ThemeService.shared.theme.headerBackgroundColor;
|
|
}
|
|
|
|
@end
|