Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Grechuhin <i.grechuhin@mapswithme.com>2015-07-08 15:58:39 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:54:52 +0300
commitfe526c13253fb422f1d5bccaacf3b21cfb1f24c7 (patch)
tree56c9cf05c5a580c29bb75eb7bc2a3af3496c8a2d /iphone/Maps/Classes/MapCell.mm
parent26ddfd6da75f646579e51b29a810017e405a1ca3 (diff)
[ios] Added fonts grid.
Diffstat (limited to 'iphone/Maps/Classes/MapCell.mm')
-rw-r--r--iphone/Maps/Classes/MapCell.mm6
1 files changed, 4 insertions, 2 deletions
diff --git a/iphone/Maps/Classes/MapCell.mm b/iphone/Maps/Classes/MapCell.mm
index a717f03dc0..5c33e11396 100644
--- a/iphone/Maps/Classes/MapCell.mm
+++ b/iphone/Maps/Classes/MapCell.mm
@@ -1,6 +1,8 @@
#import "Common.h"
#import "MapCell.h"
#import "UIKitCategories.h"
+#import "UIColor+MapsMeColor.h"
+#import "UIFont+MapsMeFonts.h"
@interface MapCell () <ProgressViewDelegate>
@@ -267,7 +269,7 @@
_titleLabel = [[UILabel alloc] initWithFrame:CGRectZero];
_titleLabel.backgroundColor = [UIColor clearColor];
_titleLabel.textColor = [UIColor blackColor];
- _titleLabel.font = [UIFont fontWithName:@"HelveticaNeue" size:17];
+ _titleLabel.font = [UIFont regular17];
}
return _titleLabel;
}
@@ -278,7 +280,7 @@
{
_subtitleLabel = [[UILabel alloc] initWithFrame:CGRectZero];
_subtitleLabel.backgroundColor = [UIColor clearColor];
- _subtitleLabel.textColor = [UIColor colorWithColorCode:@"999999"];
+ _subtitleLabel.textColor = [UIColor blackSecondaryText];
_subtitleLabel.font = [UIFont fontWithName:@"HelveticaNeue-Light" size:13];
}
return _subtitleLabel;