98 lines
2.1 KiB
Objective-C
98 lines
2.1 KiB
Objective-C
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2015 OpenMarket Ltd
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
#import "MXKTableViewCell.h"
|
|
#import "NSBundle+MatrixKit.h"
|
|
|
|
@implementation MXKTableViewCell
|
|
|
|
+ (UINib *)nib
|
|
{
|
|
// Check whether a nib file is available
|
|
NSBundle *mainBundle = [NSBundle mxk_bundleForClass:self.class];
|
|
|
|
NSString *path = [mainBundle pathForResource:[self className] ofType:@"nib"];
|
|
if (path)
|
|
{
|
|
return [UINib nibWithNibName:[self className] bundle:mainBundle];
|
|
}
|
|
return nil;
|
|
}
|
|
|
|
+ (NSString*)defaultReuseIdentifier
|
|
{
|
|
return NSStringFromClass([self class]);
|
|
}
|
|
|
|
+ (NSString*)className
|
|
{
|
|
return [NSStringFromClass([self class]) componentsSeparatedByString:@"."].lastObject;
|
|
}
|
|
|
|
- (void)awakeFromNib
|
|
{
|
|
[super awakeFromNib];
|
|
|
|
[self customizeTableViewCellRendering];
|
|
}
|
|
|
|
- (void)prepareForReuse
|
|
{
|
|
[super prepareForReuse];
|
|
|
|
[self customizeTableViewCellRendering];
|
|
}
|
|
|
|
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
|
|
{
|
|
// Check whether a xib is defined
|
|
if ([[self class] nib])
|
|
{
|
|
self = [[[self class] nib] instantiateWithOwner:nil options:nil].firstObject;
|
|
}
|
|
else
|
|
{
|
|
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
|
|
[self customizeTableViewCellRendering];
|
|
}
|
|
|
|
if (reuseIdentifier.length)
|
|
{
|
|
// The provided identifier is not always conserved in the new created cell.
|
|
// This depends how the method [initWithStyle:reuseIdentifier:] is trigerred.
|
|
// Trick: we store a copy of this identifier.
|
|
mxkReuseIdentifier = reuseIdentifier;
|
|
}
|
|
else
|
|
{
|
|
mxkReuseIdentifier = [[self class] defaultReuseIdentifier];
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
- (NSString*)reuseIdentifier
|
|
{
|
|
NSString *identifier = super.reuseIdentifier;
|
|
|
|
if (!identifier.length)
|
|
{
|
|
identifier = mxkReuseIdentifier;
|
|
}
|
|
|
|
return identifier;
|
|
}
|
|
|
|
- (void)customizeTableViewCellRendering
|
|
{
|
|
// Do nothing by default.
|
|
}
|
|
|
|
@end
|
|
|