mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-18 15:38:28 +02:00
77 lines
1.8 KiB
Objective-C
77 lines
1.8 KiB
Objective-C
/*
|
|
Copyright 2015 OpenMarket Ltd
|
|
Copyright 2017 Vector Creations Ltd
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
#import "MXKCollectionViewCell.h"
|
|
|
|
@implementation MXKCollectionViewCell
|
|
|
|
+ (UINib *)nib
|
|
{
|
|
// Check whether a nib file is available
|
|
NSBundle *mainBundle = [NSBundle bundleForClass:self.class];
|
|
NSString *path = [mainBundle pathForResource:NSStringFromClass([self class]) ofType:@"nib"];
|
|
if (path)
|
|
{
|
|
return [UINib nibWithNibName:NSStringFromClass([self class]) bundle:mainBundle];
|
|
}
|
|
return nil;
|
|
}
|
|
|
|
+ (NSString*)defaultReuseIdentifier
|
|
{
|
|
return NSStringFromClass([self class]);
|
|
}
|
|
|
|
- (void)awakeFromNib
|
|
{
|
|
[super awakeFromNib];
|
|
|
|
[self customizeCollectionViewCellRendering];
|
|
}
|
|
|
|
- (void)prepareForReuse
|
|
{
|
|
[super prepareForReuse];
|
|
|
|
[self customizeCollectionViewCellRendering];
|
|
}
|
|
|
|
- (instancetype)initWithFrame:(CGRect)frame
|
|
{
|
|
// Check whether a xib is defined
|
|
if ([[self class] nib])
|
|
{
|
|
self = [[[self class] nib] instantiateWithOwner:nil options:nil].firstObject;
|
|
self.frame = frame;
|
|
}
|
|
else
|
|
{
|
|
self = [super initWithFrame:frame];
|
|
[self customizeCollectionViewCellRendering];
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
- (void)customizeCollectionViewCellRendering
|
|
{
|
|
// Do nothing by default.
|
|
}
|
|
|
|
@end
|
|
|