Xcode,捆绑显示名称可以是产品名称的变量吗
我看到 $(PRODUCT_NAME) 可以是 plist 文件中捆绑显示名称的变量,
但我希望发生相反的情况,因为 $(BUNDLE_NAME) 是目标信息中产品名称中的变量。这是一个真实的变量吗?我可以做一个吗?谢谢!
I see that $(PRODUCT_NAME) can be a variable for Bundle display name within the plist file,
but I would like the opposite to occur, for $(BUNDLE_NAME) to be the variable within Product Name in the target info. Is that a real variable? Can I make it one? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的目标中,转到“构建设置”并添加“用户定义的设置”(例如 DISPLAY_NAME)。
然后,转到目标的
Info.plist
并添加“Bundle display name”键并将其值设置为“$(DISPLAY_NAME)”In your target, go to "Build Settings" and add a "User-Defined Setting" (e.g. DISPLAY_NAME).
Then, go to the
Info.plist
of your target and add "Bundle display name" key and set its value to "$(DISPLAY_NAME)"