How can I add a second line (smaller font) below the navigationBar title as shown below? I want to show it below Sunday

How can I add a second line (smaller font) below the navigationBar title as shown below? I want to show it below Sunday

[UINavigationItem prompt] is what you're looking for.
You might set this in a UIViewController's initWithNibName:bundle: (or init if you're not using XIBs) like this:
[[self navigationItem] setPrompt:@"The best day of the week"];