change body bold to b1

This commit is contained in:
panxi 2019-03-27 15:59:28 -04:00
parent 1d6293a0d5
commit 124069c0be
4 changed files with 0 additions and 21 deletions

View File

@ -41,8 +41,6 @@
// Getters
+ (nonnull MFLabel *)label NS_SWIFT_NAME(commonLabel());
+ (nonnull MFLabel *)commonLabelBodyWithSize:(CGFloat)size scale:(BOOL)scale;
+ (nonnull MFLabel *)commonLabelBodyBold:(BOOL)scale;
+ (nonnull MFLabel *)commonLabelBodyLighter:(BOOL)scale;
+ (nonnull MFLabel *)commonLabelBodyLarge:(BOOL)scale;
+ (nonnull MFLabel *)commonLabelHeadlineSmall:(BOOL)scale;

View File

@ -116,18 +116,6 @@
return label;
}
+ (nonnull MFLabel *)commonLabelBodyWithSize:(CGFloat)size scale:(BOOL)scale {
MFLabel *label = [MFLabel label];
[label styleBodyWithSize:size scale:scale];
return label;
}
+ (nonnull MFLabel *)commonLabelBodyBold:(BOOL)scale {
MFLabel *label = [MFLabel label];
[label styleBodyBold:scale];
return label;
}
+ (nonnull MFLabel *)commonLabelBodyLighter:(BOOL)scale {
MFLabel *label = [MFLabel label];
[label styleBodyLighter:scale];

View File

@ -35,7 +35,6 @@
+ (nonnull UILabel *)commonLabelHeadlineExtraLarge;
+ (nonnull UILabel *)commonLabelHeadlineFeed;
+ (nonnull UILabel *)commonLabelSubheadBold;
+ (nonnull UILabel *)commonLabelBodyBold;
+ (nonnull UILabel *)commonLabelBodyLarge;
+ (nonnull UILabel *)commonLabelBodyLighter;
+ (nonnull UILabel *)commonLabelFeedTitle;

View File

@ -95,12 +95,6 @@ static const CGFloat VertialShadowOffset = 6;
return label;
}
+ (nonnull UILabel *)commonLabelBodyBold {
UILabel *label = [MVMCoreUICommonViewsUtility label];
[MFStyler styleLabelBodyBold:label];
return label;
}
+ (nonnull UILabel *)commonLabelBodyLarge {
UILabel *label = [MVMCoreUICommonViewsUtility label];
[MFStyler styleLabelBodyLarge:label];