FontasticIcons
- 授权协议: MIT
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: https://github.com/AlexDenisov/FontasticIcons
- 软件文档: https://github.com/AlexDenisov/FontasticIcons
软件介绍
FontasticIcons is an Objective-C wrapper for iconic fonts.
示例代码:
#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];
