Info.plist 参数说明 和 隐藏文件

1.  CFBundleName(Bundle name)、CFBundleDisplayName(Bundle display name)、CFBundleExecutable(Executable file)

  在 iPhone 桌面屏幕显示的应用名字是 CFBundleDisplayName,如果没有提供 CFBundleDisplayName ,系统会去寻找 CFBundleName 作为显示名字;

  CFBundleExecutable对应 ipa 里面的 *.app 里面的 二进制文件名;

The app name on the iPhone home screen comes from the CFBundleDisplayName (or "Bundle display name", the human-readable string in Xcode) entry of your iOS app’s Info.plist (see Figure 1). 
If the bundle display name is not provided, the system will fall back to the app's bundle name, which is specified in the CFBundleName entry of the Info.plist.

苹果官方:https://developer.apple.com/library/archive/qa/qa1892/_index.html

2. macOS 删除当前文件夹下 .DS_Store 隐藏文件

  $ find ./ -name ".DS_Store" -depth -exec rm {} \;

  注意:如果 修改了 文件夹里内容 依然还会 自动 生成 .DS_Store 隐藏文件,这个是 macOS 的特性。

结束。

猜你喜欢

转载自www.cnblogs.com/pinweyshg/p/9238591.html
今日推荐