Clone this repo:
  1. bc63eab Revert "Remove unneeded fonts and unhint others. (#17)" (#19) by Robert Moore · 5 years ago stable
  2. 47af7f8 Revert "Remove extra `self = [super init]`. (#15)" (#18) by Robert Moore · 5 years ago
  3. 199096d Remove unneeded fonts and unhint others. (#17) by dmaclach · 5 years ago
  4. 0ad5e00 Remove extra `self = [super init]`. (#15) by Chrisna Aing · 5 years ago
  5. 4aa51e9 Create release notes. (#14) by Randall Li · 7 years ago

Roboto Font Loader

The Roboto Font Loader lazy loads the Roboto font.

Material Design Specifications

Installation

Requirements

  • Xcode 7.0 or higher.
  • iOS SDK version 7.0 or higher.

Installation with CocoaPods

To add this component to your Xcode project using CocoaPods, add the following to your Podfile:

pod 'MDFRobotoFontLoader'

Then, run the following command:

pod install

Usage

The Roboto Font Loader provides APIs for getting the Roboto Fonts. Consider using the Typography Material Component for iOS font styles recommended by Material spec.

Importing

Before using Roboto Font Loader, you'll need to import it:

Objective-C

#import "MaterialRobotoFontLoader.h"

Swift

import MDFRobotoFontLoader

Dependencies

The Roboto Font Loader Component depends on the FontDiskLoader Component.

Objective-C

UIFont *font = [[MDFRobotoFontLoader sharedInstance] regularFontOfSize:16];

Swift

let myFont:UIFont = MDFRobotoFontLoader.sharedInstance()regularFontOfSize(16)