0

Is it possible to change the Product name/ default image (Splash - screen) of application dynamically from code..

Madhu
  • 1,542
  • 1
  • 14
  • 30
  • This link will helps you... http://stackoverflow.com/questions/5788454/iphone-showing-dynamic-splash-screens – Bhanu Prakash Mar 07 '13 at 06:10
  • No. iOS does not allow 3rd party apps to change the name under the icon nor change the Default.png at runtime. Only Apple apps can do this. – rmaddy Mar 07 '13 at 06:12
  • Thanks for the link. Its providing splash screen with adding image view in appdidfinsh launching method. That's i know & it will provide blank screen for splash screen. till now i have done same, but i am looking is this possible or not..? – Madhu Mar 07 '13 at 06:14

1 Answers1

0

Product Name : I'm not sure if you can do that. Apple won't allow it. Once the app is uploaded you can't change the Product Name.

Splash screen : Here you can do little manipulation. Like, keep your app launching view controller as just one UIImageView. Show it for few seconds and push user to your first screen. And you can achieve the effect of Splash Screen.

Rushi
  • 4,553
  • 4
  • 33
  • 46