changed min os to 7
1 file changed
tree: 7efb4681d478132ec1b8e9c71999268322fdb578
  1. examples/
  2. src/
  3. tests/
  4. .clang-format
  5. .codecov.yml
  6. .gitignore
  7. .jazzy.yaml
  8. .travis.yml
  9. AUTHORS
  10. CHANGELOG.md
  11. CONTRIBUTING.md
  12. LICENSE
  13. MDFFontDiskLoader.podspec
  14. README.md
README.md

#FontDiskLoader

Registers a single custom font asset from disk

Material Design Specifications

Overview

In order to use custom fonts on iOS the font assets need to be registered before they can be used. Font Disk Loader lazily registers your custom fonts.

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 'MDFFontDiskLoader'

Then, run the following command:

pod install

Importing

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

Objective-C

#import "MaterialFontDiskLoader.h"

Swift

import MDFFontDiskLoader

Usage

Make sure to add your font (or the bundle it is in) to your app target. The FontDiskLoader will lazy register the font using a CoreText API so adding a the font to your info.plist is not necessary. All you need to do is initialize the loader with the font name and url to the file and ask for the font.

Code snippets

Objective-C

  MDFFontDiskLoader *fontDiskLoader =
      [[MDFFontDiskLoader alloc] initWithFontName:nameOfFontInFile URL:fontURLOnDisk];
  UIFont *font = [fontDiskLoader fontOfSize:16];

Swift

    let fontLoader = MDFFontDiskLoader.init(fontName: nameOfFontInFile, fontURL: fontURLOnDisk);
    let myFont:UIFont = fontLoader.fontOfSize(16)!;