简体   繁体   中英

space in app name - iOS

How do get a space in an app name for iOS (appc SDK 6.2.0). In tiapp.xml I have the space in the name "My Appname" and when I publish to iTuneConnect it shows up as "MyAppname".

Any advice will be greatly appreciated.

在此输入图像描述

This is where you put your app name which shows up on iTunesConnect. The app name which shows up with icon on iOS device springboard is the one you specify in tiapp.xml file.

you can create a file i18n/en/app.xml with the following content:

<resources>
    <string name="appname">My App Name</string>
</resources>

Then it is localised by Titanium and shows up correctly on the device dashboard

It is a known iOS 11 bug and as mentioned Sebastian, you should use file "app/i18n/en/app.xml" for localizing application name, but instead space, use &#x2007; code. Example for your app name ( My Appname must be My&#x2007;Appname ):

<?xml version="1.0" encoding="UTF-8"?>
<resources>
    <string name="appname">My&#x2007;Appname</string>
</resources>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM