If the application name under the icon on the home screen is "My Awesome App" how do you get that string within the application at runtime?
I’d try
[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleDisplayName"];
although presumably you know your own app’s name and can just use it…