Typography provides methods for displaying text in [material styles] (https://www.google.com/design/spec/style/typography.html). Mostly centered around fonts and their opacity.
- Xcode 7.0 or higher.
- iOS SDK version 7.0 or higher.
#import "MaterialTypography.h"
UILabel *label = [[UILabel alloc] init];
label.text = @"This is sometext";
label.font = [MDCTypography titleFont];
label.alpha = [MDCTypography titleFontOpacity];
[label sizeToFit];
[self.view addSubview:label];
Source: [Typography scale spec]
(https://www.google.com/design/spec/style/typography.html#typography-styles).
Source: [Typography opacity spec]
(https://www.google.com/design/spec/style/typography.html#typography-other-typographic-guidelines).