views:

558

answers:

1

Hi All,

Is it possible to modify the BundleDisplay name at runtime ???

Thanks

+3  A: 

I'd be really surprised if you could, since doing so would require you to edit the Info.plist file, which is in a write-protected directory. Even if you could modify it, it would cause the code signature to no longer match the application bundle, and the app would refuse to launch.

The closest you can get to using a different display name is to provide localized versions of it.

Dave DeLong