Qt for ios 设置程序显示名称

版权声明:支持原创,转载请说明~ https://blog.csdn.net/luoyayun361/article/details/84334864

前言

Qt 开发 IOS 程序,编译出来软件的默认名称就是 Qt 的工程名,包括 Qt 开发 Android 也是一样,修改 android 的程序显示名称需要在 AndroidManifest文件中进行修改,而 IOS 的程序显示名称就需要在 info.plist文件中修改。在之前的文章中介绍了如何将 Qt 程序拿到 xcode 中进行编译,文章在这里,在通过命令行生成 xcode 工程文件的时候会生成一个info.plist 文件。

修改程序显示名称

根据之前的文章介绍,在 xcode中点击工程名,进入到属性配置页面,点击 info 一栏。
在这里插入图片描述
找到 Bundle display name一栏,然后双击 value值即可修改。

可以说是很简单了。

还可以在 info.plist中修改软件的版本号以及其他信息,详细介绍请参考苹果开发官网:
https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Introduction/Introduction.html#//apple_ref/doc/uid/TP40009248-SW1

https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/AboutInformationPropertyListFiles.html#//apple_ref/doc/uid/TP40009254-SW1

https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/20001431-102043

猜你喜欢

转载自blog.csdn.net/luoyayun361/article/details/84334864