1
タブのフォントサイズをMDCTabBarに変更できますか?MDCTabBarのフォントタイプとサイズを変更する
MDCTabBarは
https://github.com/material-components/material-components-ios
タブのフォントサイズをMDCTabBarに変更できますか?MDCTabBarのフォントタイプとサイズを変更する
MDCTabBarは
https://github.com/material-components/material-components-ios
CGFloat width = [UIScreen mainScreen].bounds.size.width;
UIFont *font = [MDCTypography buttonFont];
if (width <= 320.0) {
font = [UIFont fontWithName:@"Dosis-Medium" size:12];
} else if (width <= 375.0) {
font = [UIFont fontWithName:@"Dosis-Medium" size:14];
} else {
font = [UIFont fontWithName:@"Dosis-Medium" size:15];
}
self.tabBar.unselectedItemTitleFont = font;
self.tabBar.selectedItemTitleFont = font;
のiOSに設計材料を使用するには、Googleのライブラリの一部であります