Popularity
3.2
Stable
Activity
0.0
Stable
145
11
23

Programming language: Swift
License: MIT License
Tags: Text     Font    
Latest version: v0.5.0

GoogleMaterialIconFont alternatives and similar libraries

Based on the "Font" category.
Alternatively, view GoogleMaterialIconFont alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of GoogleMaterialIconFont or a related project?

Add another 'Font' Library

README

GoogleMaterialIconFont

Carthage compatible CI Status Version License Platform

Google Material Design Icons for Swift and ObjC project

This library is inspired by FontAwesome.swift

Both Swift and Objctive-C are supported
See example project or Material icons more detail

Usage

Swift

import GoogleMaterialIconFont

label.text = String.materialIcon(.Favorite)
label.font = UIFont.materialIconOfSize(32)

Objective-C

import #import <GoogleMaterialIconFont/GoogleMaterialIconFont-Swift.h>

label.text = [NSString materialIcon:MaterialIconFontFavoriteBorder];
label.font = [UIFont materialIconOfSize:32];

Requirements

iOS8+
Swift 2.3+
Xcode 8.0+

Installation

CocoaPods

GoogleMaterialIconFont is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod "GoogleMaterialIconFont"

post_install do |installer|
 installer.pods_project.targets.each do |target|
   target.build_configurations.each do |config|
     config.build_settings['SWIFT_VERSION'] = '2.3'
   end
 end
end

Then, run pod install

In case you haven't installed CocoaPods yet, run the following command

$ gem install cocoapods

Carthage

GoogleMaterialIconFont is available through Carthage.

To install GoogleMaterialIconFont into your Xcode project using Carthage, specify it in your Cartfile:

github "kitasuke/GoogleMaterialIconFont" Then, run carthage update --toolchain com.apple.dt.toolchain.Swift_2_3

You can see Carthage/Build/iOS/GoogleMaterialIconFont.framework now, so drag and drop it to Embedded Binaries in General menu tab with your project.

In case you haven't installed Carthage yet, download the latest pkg from Carthage

Manual

Copy all the files in Pod directory into your project. Make sure that GoogleMaterialIconFont.ttf is specified into Fonts provided by application in your project's info.plist

License

This library uses material-design-icons by Google to create icon font file which is GoogleMaterialIconFont.ttf. Therefore, GoogleMaterialIconFont.ttf is available under the Creative Common Attribution 4.0 International License (CC-BY 4.0)

GoogleMaterialIconFont is available under the MIT license. See the LICENSE file for more info.


*Note that all licence references and agreements mentioned in the GoogleMaterialIconFont README section above are relevant to that project's source code only.