mvm_core_ui/MVMCoreUI/Utility/MFFonts.h
Xinlei(Ryan) Pan 4ad4eb7f46 add new font
2020-02-25 11:49:26 -05:00

21 lines
487 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
+ (nonnull UIFont *)mfFont75Bd:(CGFloat)size;
+ (nonnull UIFont *)mfFont55Rg:(CGFloat)size;
+ (nullable UIFont *)mfFontOcratxt:(CGFloat)size;
+ (nonnull UIFont *)mfFontWithName:(nonnull NSString *)name size:(CGFloat)size;
@end