2

I want to change the app name based on the app language selected by the user & not the system language.

Is there any solution?

Even if it is doable using private API, I would like to know.

I know there is only one way using plist but as it is read only, I won't be able to update the plist file.

VImp Note, I want to change as per app language and not as per system language.

Fahim Parkar
  • 30,974
  • 45
  • 160
  • 276

2 Answers2

2

You can localize your Info.plist file.

Just select Info.plist file,and in File Inspector,click Localize... button in the Localization section.

tounaobun
  • 14,570
  • 9
  • 53
  • 75
2

You can't change your apps name programmatically.Because the name is stored in the info.pist which resides in you apps main bundle is read only you can not change it. You only option is to use the localized functionality provided by iOS based on the system language.

rckoenes
  • 69,092
  • 8
  • 134
  • 166