| // Copyright 2017-present the Material Components for iOS authors. All Rights Reserved. |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| #import <UIKit/UIKit.h> |
| |
| #import "MDCFontTextStyle.h" |
| |
| API_DEPRECATED_BEGIN("🤖👀 Use typography tokens instead. " |
| "See go/material-ios-typography/gm2-migration for more details." |
| "This has go/material-ios-migrations#scriptable-potential 🤖👀. ", |
| ios(11, 12)) |
| |
| @interface UIFont (MaterialTypography) |
| |
| /** |
| Returns an instance of the font associated with the Material text style and scaled based on the |
| content size category. |
| |
| @param style The Material font text style for which to return a font. |
| @return The font associated with the specified style. |
| */ |
| + (nonnull UIFont *)mdc_preferredFontForMaterialTextStyle:(MDCFontTextStyle)style; |
| |
| /** |
| Returns an instance of the font associated with the Material text style |
| This font is *not* scaled based on the content size category (Dynamic Type). |
| |
| @param style The Material font text style for which to return a font. |
| @return The font associated with the specified style. |
| */ |
| + (nonnull UIFont *)mdc_standardFontForMaterialTextStyle:(MDCFontTextStyle)style; |
| |
| /** |
| Returns an new instance of the font sized according to the text-style and whether the content |
| size category (Dynamic Type) should be taken into account. |
| |
| @param style The Material font text style that will determine the fontSize of the new font |
| @param scaled Should the new font be scaled according to the content size category (Dynamic Type) |
| */ |
| - (nonnull UIFont *)mdc_fontSizedForMaterialTextStyle:(MDCFontTextStyle)style |
| scaledForDynamicType:(BOOL)scaled; |
| |
| @end |
| |
| API_DEPRECATED_END |