문제

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