iOS 苹果禁止使用超过三个句点分隔的版本号(Bundle Ve
2020-04-02 本文已影响0人
曾經蠟筆沒有小新
CFBundleShortVersionString
The release or version number of the bundle.
Details
Name
Bundle versions string, short
Type
String
Discussion
This key is a user-visible string for the version of the bundle. The required format is three period-separated integers, such as 10.14.1. The string can only contain numeric characters (0-9) and periods.
这个键是bundle版本的用户可见字符串。所需的格式是三个句点分隔的整数,例如10.14.1。字符串只能包含数字字符(0-9)和句点。
Each integer provides information about the release in the format [Major].[Minor].[Patch]:
每个整数以[* Major ]。[ Minor ]。[ Patch *]格式提供有关发行的信息:
-
Major: A major revision number. 主要修订号。
-
Minor: A minor revision number. 次要修订号。
-
Patch: A maintenance release number. 维护版本号。
This key is used throughout the system to identify the version of the bundle.
整个系统都自始至终使用此键值来标识捆绑软件的版本。
引用自-苹果开发文档