atermenji / FontasticIcons

ObjC wrapper for the iconic fonts.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FontasticIcons

FontasticIcons is an Objective-C wrapper for iconic fonts.

FontasticIcons example.

Installation

With CocoaPods

pod 'FontasticIcons'

Manual

Just add sources from FontasticIcons/Sources/Classes directory to your project.

Usage

#import <FontasticIcons.h>
...
FIIconView *iconView = [[FIIconView alloc] initWithFrame:CGRectMake(0, 0, 50, 50)];
iconView.backgroundColor = [UIColor clearColor];
iconView.icon = [FIEntypoIcon leafIcon];
iconView.padding = 2;
iconView.iconColor = [UIColor greenColor];
[self.view addSubview:iconView];

Available fonts

License

Source code distributed under MIT license.

Note that all fonts have it's own license.

About

ObjC wrapper for the iconic fonts.

License:MIT License


Languages

Language:Objective-C 100.0%