20 lines
409 B
Objective-C
20 lines
409 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;
|
|
|
|
@end
|