mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-23 14:43:43 +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
18 lines
523 B
Objective-C
18 lines
523 B
Objective-C
#import "MWMMapDownloaderSubplaceTableViewCell.h"
|
|
|
|
@interface MWMMapDownloaderSubplaceTableViewCell ()
|
|
|
|
@property(weak, nonatomic) IBOutlet UILabel *subPlace;
|
|
|
|
@end
|
|
|
|
@implementation MWMMapDownloaderSubplaceTableViewCell
|
|
|
|
- (void)setSubplaceText:(NSString *)text {
|
|
self.subPlace.attributedText = [self matchedString:text
|
|
selectedAttrs:@{NSFontAttributeName : [UIFont bold14]}
|
|
unselectedAttrs:@{NSFontAttributeName : [UIFont regular14]}];
|
|
}
|
|
|
|
@end
|