mvm_core_ui/MVMCoreUI/Utility/MFFonts.h
Pfeil, Scott Robert 25c754b234 Number convenience for NSDictionary category
KeyTextColor constant for MFLabel and core ui
Checker for hasText on MFLabel
update molecule protocol for mf label.
separator use molecule protocol
fix to header
2019-03-04 17:44:21 -05:00

21 lines
490 B
Objective-C

//
// MVMFonts.h
// myverizon
//
// Created by Scott Pfeil on 11/17/14.
// Copyright (c) 2014 Verizon Wireless. All rights reserved.
//
// Commonly used mvm fonts
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@interface MFFonts : NSObject
+ (nullable UIFont *)mfFont75Bd:(CGFloat)size;
+ (nullable UIFont *)mfFont55Rg:(CGFloat)size;
+ (nullable UIFont *)mfFontOcratxt:(CGFloat)size;
+ (nullable UIFont *)mfFontWithName:(nonnull NSString *)name size:(CGFloat)size;
@end