mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-21 22:03:37 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
26 lines
485 B
Objective-C
26 lines
485 B
Objective-C
#import "MWMMapDownloaderButtonTableViewCell.h"
|
|
|
|
@implementation MWMMapDownloaderButtonTableViewCell
|
|
|
|
- (void)awakeFromNib
|
|
{
|
|
[super awakeFromNib];
|
|
[self config];
|
|
}
|
|
|
|
- (void)prepareForReuse
|
|
{
|
|
[super prepareForReuse];
|
|
[self config];
|
|
}
|
|
|
|
- (void)config
|
|
{
|
|
if ([self respondsToSelector:@selector(setSeparatorInset:)])
|
|
[self setSeparatorInset:UIEdgeInsetsZero];
|
|
if ([self respondsToSelector:@selector(setLayoutMargins:)])
|
|
[self setLayoutMargins:UIEdgeInsetsZero];
|
|
}
|
|
|
|
@end
|