This repository was archived by the owner on Dec 11, 2025. It is now read-only.
v60.3.0
This minor release introduces a new behavioral flag for changing the title font size on
MDCNavigationBar.
New features
MDCNavigationBar has a new flag that, once enabled, allows you to set a font with any size.
MDCNavigationBar *navigationBar = [[MDCNavigationBar alloc] init];
navigationBar.allowAnyTitleFontSize = YES;
UIFont *font = [UIFont systemFontOfSize:24];
navigationBar.titleFont = font; // Font size will actually be 24API changes
NavigationBar
MDCNavigationBar
new property: allowAnyTitleFontSize in MDCNavigationBar