ONVIK-12121

This commit is contained in:
Suresh, Kamlesh 2019-03-05 11:53:11 -05:00
parent e92e87abb2
commit 5cd7797550
2 changed files with 8 additions and 0 deletions

View File

@ -38,6 +38,8 @@
// Getters
+ (nonnull MFLabel *)label;
// This is for swift files. Swift is not able to find MFLabel.label()
+ (nonnull MFLabel *)standardLabel;
+ (nonnull MFLabel *)commonLabelBodyWithSize:(CGFloat)size scale:(BOOL)scale;
+ (nonnull MFLabel *)commonLabelBodyBold:(BOOL)scale;
+ (nonnull MFLabel *)commonLabelBodyLighter:(BOOL)scale;

View File

@ -65,6 +65,12 @@
return label;
}
// This is for swift files. Swift is not able to find MFLabel.label()
+ (nonnull MFLabel *)standardLabel {
MFLabel *label = [MFLabel label];
return label;
}
+ (nonnull MFLabel *)commonLabelB2:(BOOL)scale {
MFLabel *label = [MFLabel label];
[label styleB2:scale];