Skip to content

Instantly share code, notes, and snippets.

@sjehutch
Last active December 19, 2017 20:56
Show Gist options
  • Save sjehutch/591ee4a4c0ffb3fcbb8a57d6b4fd28a5 to your computer and use it in GitHub Desktop.
Save sjehutch/591ee4a4c0ffb3fcbb8a57d6b4fd28a5 to your computer and use it in GitHub Desktop.
Customize your navigation items text Xamarin IOS
//Mark: Add into your appdelegate In the FinishedLaunching method
public override bool FinishedLaunching(UIApplication application, NSDictionary launchOptions)
{
var attr = UINavigationBar.Appearance.GetTitleTextAttributes();
attr.Font = UIFont.SystemFontOfSize(14f, weight: UIFontWeight.Bold);
UINavigationBar.Appearance.SetTitleTextAttributes(attr);
}
@sjehutch
Copy link
Author

screen shot 2017-12-19 at 2 54 08 pm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment