Skip to content
This repository was archived by the owner on Dec 11, 2025. It is now read-only.

v60.3.0

Choose a tag to compare

@jverkoey jverkoey released this 27 Aug 18:17
· 4568 commits to stable since this release

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 24

API changes

NavigationBar

MDCNavigationBar

new property: allowAnyTitleFontSize in MDCNavigationBar

Component changes

NavigationBar

Changes