Open Sans 是由 Ascender Corp. 的字体总监 Steve Matteson 设计的人体主义无衬线字体。这个版本包含完整的 897 个字符集,包括标准的 ISO Latin 1、Latin CE、希腊和西里尔字符集。Open Sans 设计时采用直立应力、开放形式和中性、友好的外观。它针对打印、网页和移动界面进行了优化,其在字母形式上具有出色的可读性。
#import <OpenSans/UIFont+OpenSans.h>
@implementation OpenSansViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.openSansLabel.font = [UIFont openSansFontOfSize:18.0f];
self.openSansItalicLabel.font = [UIFont openSansItalicFontOfSize:18.0f];
self.openSansLightLabel.font = [UIFont openSansLightFontOfSize:18.0f];
self.openSansLightItalicLabel.font = [UIFont openSansLightItalicFontOfSize:18.0f];
self.openSansBoldLabel.font = [UIFont openSansBoldFontOfSize:18.0f];
self.openSansBoldItalicLabel.font = [UIFont openSansBoldItalicFontOfSize:18.0f];
self.openSansSemiBoldLabel.font = [UIFont openSansSemiBoldFontOfSize:18.0f];
self.openSansSemiBoldItalicLabel.font = [UIFont openSansSemiBoldItalicFontOfSize:18.0f];
self.openSansExtraBoldLabel.font = [UIFont openSansExtraBoldFontOfSize:18.0f];
self.openSansExtraBoldItalicLabel.font = [UIFont openSansExtraBoldItalicFontOfSize:18.0f];
}
@end
这是一个 CocoaPod,您可以使用以下方法进行安装
pod 'OpenSans'
Steve Matteson 拥有 OpenSans 字体的版权,并受 Apache 许可协议,版本 2.0 授权。