If no viewcontroller has been pushed on the stack, ie. you're displaying the viewcontroller at the top of the stack (sometimes called rootViewController) you can do it with
[rootViewController setTitle:@"Title"];
NOTE that you must use setTitle - rootViewController.title=@"Title" will normally not work.
Actually, you can do it with any viewcontroller, even if it's not viewDidLoad'ed yet. If it's created programmatically, just create it with
myViewController *mvc=[[myViewController alloc] initWithNibName:@"nameofnibwithout.xib" bundle:nil];
Or you could declare it as an object in the app delegate, make it an IBOutlet, create a UIViewController and set its class to myViewController, and connect it to the IBOutlet so it's not nil.