سؤال

I have wrote code in InfoPlist.strings(English) file like this:

CFBundleDiaplayName="Lo Demo";

But it doesn't work. My app name is ${PRODUCT_NAME} in file named xxx-info.plist.

I have tried to delete the item "Bundle display name", but the app name didn't change.

هل كانت مفيدة؟

المحلول

You misspelled it:

CFBundleDisplayName="Lo Demo";
          ^

نصائح أخرى

The right formate is

"CFBundleDisplayName" = "Lo Demo";

You lost the "". It's work for me.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top