Skip to main content

Adding a space to your iOS App Name

How to add a space to your display name

There is a cap of sorts for iOS applications where once your display name exceeds 12 characters, it will strip any spaces in it.

There are a lot of posts on StackOverflow about this, however the missed one small detail on how to edit the value.

What we need to do is edit info.plist. You can try this in Xcode but it doesn't work, you need to use another text editor - in my case I used Visual Studio Code.

Your directory structure may vary, here I am working on a React Native project. Instead of iOS, your root folder may be your project name. 

Go to: build > *Your application name* > edit info.plist

The value we want to update is "CFBundleDisplayName". 

Where the space(s) are, we need to replace the space here with:   


Your CFBundleDisplayName should then look like this:


That is all there is to it! Hope this helps you out.

Comments

  1. Your blog helped me understand the importance of a Booking App .

    ReplyDelete
  2. Doesn't work.

    ReplyDelete
  3. React Native App Development: React Native app development refers to the process of creating mobile applications using the React Native framework. With React Native, developers can leverage their existing knowledge of JavaScript and React to build cross-platform apps. Instead of developing separate codebases for iOS and Android, React Native allows for code reuse, resulting in cost and time savings.

    ReplyDelete

Post a Comment

Popular posts from this blog

How to enable the lock screen for your Android Emulator

Here's how: When I was testing and app with media controls, I would press the lock button, once to lock the screen and a second to unlock it which would instantly unlock it and take you to the app.  By setting the option for ‘swipe’ when unlocking the screen (pressing the power button the second time) you are now presented with the lock screen and can swipe/drag the screen upwards to go the application Go to Settings --> Security --> Screen Lock Choose 'Swipe' That's all there is to it!

Xcode - ld: library not found for -lDoubleConversion

Here's how you fix this issue Ran into this with the iOS version of my React Native application, the fix is very quick and easy: We need to disable dead code stripping for our release, this is how to do it: Open XCode and press: Cmd + 1 Click on your project in the left panel Click on "Build Settings" In the "Linking" section, under the "Dead Code Stripping" section, change the setting for "Release" from "Yes" to "No"