change body bold to b1
This commit is contained in:
parent
1d6293a0d5
commit
124069c0be
@ -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;
|
||||
|
||||
@ -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];
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -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];
|
||||
|
||||
Loading…
Reference in New Issue
Block a user