答えて

-1
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のライブラリの一部であります
関連する問題