How can I change the NavigationController.title.font on the Storyboard?

jiexishede

Now, I use the storyboard to setup the UI. It is a UITableViewController in the storyboard. The UITableViewController is the rootViewController of the UINavigationController . Now , I set the NavigationController's title, but the title is too small. I want to change the font of the title and the color of the title. How should I do in the StoryBoard. By the way, if it can't do in the storyBoard. Can I do it use code ??

Maulik shah

Using StoryBoard see following Image

enter image description here

using Code

Add code in view didload

 NSShadow *shadow = [NSShadow new];
[shadow setShadowColor: [UIColor clearColor]];
[shadow setShadowOffset: CGSizeMake(0.0f, 1.0f)];

[self.navigationController.navigationBar setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
                                         [UIFont fontWithName:@"TimeBurner" size:27.0f], NSFontAttributeName,
                                         [UIColor whiteColor], NSForegroundColorAttributeName,
                                         shadow, NSShadowAttributeName,nil]];

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How can i change in TabControl the font size of a tab title?

From Dev

How can I set/change the font size of UIBarButtonItem's Title

From Dev

How do I change window title font in Debian 9 with Xfce?

From Dev

How can I change the browser title?

From Dev

How can I dynamicly change the <title> tag?

From Dev

How can I change the title of the Project Explorer?

From Dev

How i can change font to UITextView in swift?

From Dev

How can I change font in phpmailer?

From Dev

How can I change the size of the Dash font?

From Dev

How can I change the size of the Dash font?

From Dev

How can I change the system font?

From Dev

How can I change the title of a Fragment without changing the title of the MainActivity?

From Dev

How can I increase window title font size?

From Dev

How can I change the cmd font and font size with a command?

From Dev

How to Change Title Text Colour of NavigationController in iOS using Xamarin

From Dev

How to add UIToolbar to a NavigationController on Storyboard?

From Dev

How can I change the i3 font on NixOS

From Dev

How to change the font of a QGroupBox's title only?

From Dev

How to change the default title font in jQuery colorbox

From Dev

How to Change title font with ShowcaseView android Library

From Dev

How to Bold and Change Font Size of Chart Title

From Dev

How to change the font and text color of the title of UINavigationBar

From Dev

How to change the font of ActionBar title in AppCompat 23

From Dev

How to change google chart title font size?

From Dev

How can I change the title of front-page in Drupal 8?

From Dev

How can I change the back button title in ionic framework?

From Dev

How can I change dialog title color in jquery ui?

From Dev

How can I definitively change the title of my Ember application?

From Dev

How Can I change the title of my java app on the osx menubar?

Related Related

  1. 1

    How can i change in TabControl the font size of a tab title?

  2. 2

    How can I set/change the font size of UIBarButtonItem's Title

  3. 3

    How do I change window title font in Debian 9 with Xfce?

  4. 4

    How can I change the browser title?

  5. 5

    How can I dynamicly change the <title> tag?

  6. 6

    How can I change the title of the Project Explorer?

  7. 7

    How i can change font to UITextView in swift?

  8. 8

    How can I change font in phpmailer?

  9. 9

    How can I change the size of the Dash font?

  10. 10

    How can I change the size of the Dash font?

  11. 11

    How can I change the system font?

  12. 12

    How can I change the title of a Fragment without changing the title of the MainActivity?

  13. 13

    How can I increase window title font size?

  14. 14

    How can I change the cmd font and font size with a command?

  15. 15

    How to Change Title Text Colour of NavigationController in iOS using Xamarin

  16. 16

    How to add UIToolbar to a NavigationController on Storyboard?

  17. 17

    How can I change the i3 font on NixOS

  18. 18

    How to change the font of a QGroupBox's title only?

  19. 19

    How to change the default title font in jQuery colorbox

  20. 20

    How to Change title font with ShowcaseView android Library

  21. 21

    How to Bold and Change Font Size of Chart Title

  22. 22

    How to change the font and text color of the title of UINavigationBar

  23. 23

    How to change the font of ActionBar title in AppCompat 23

  24. 24

    How to change google chart title font size?

  25. 25

    How can I change the title of front-page in Drupal 8?

  26. 26

    How can I change the back button title in ionic framework?

  27. 27

    How can I change dialog title color in jquery ui?

  28. 28

    How can I definitively change the title of my Ember application?

  29. 29

    How Can I change the title of my java app on the osx menubar?

HotTag

Archive