Plist files and Property List files are generally xml files used to describe the application software.
It mainly includes the following:
Whether the keyword type must Abstract The CFBundleDevelopmentRegionStringNo region of the bundle. It usually corresponds to the author's mother tongue. CFBundleDisplayNameStringNo indicates the localized bundle name. The CFBundleDocumentTypesArrayNo Group describes the document types supported by the bundle. CFBundleExecutableStringYes indicates the executable file name of the bundle. CFBundleGetInfoHTMLStringNo is a string used to display richer content in the Get Info panel of the Finder. CFBundleGetInfoStringStringNo is a string used to display in the Get Info panel of the Finder. CFBundleHelpBookFolderStringNo contains the folder Name of the bundle help file. CFBundleHelpBookNameStringNo indicates the name of the Help File displayed when the bundle is started. The file name of the CFBundleIconFileStringYes icon. CFBundleIdentifierStringYes is the unique identifier string of the bundle. The format of this string is similar to that of a java package, for example, com. apple. myapp. CFBundleInfoDictionaryVersionStringYesInfo. plist format version information. CFBundleNameStringYes. CFBundlePackageTypeStringYes is used to identify the four-letter long code of the bundle type. Cfbundlepolicversionstringstringyes is the version string of the bundle for the user market. CFBundleSignatureStringYes is a four-letter code used to identify the creator. CFBundleURLTypesArrayNo describes the dictionary of URL protocols supported by the bundle. CFBundleVersionStringYes: The creation Number of the executable file.
CFBundleDevelopmentRegion
The CFBundleDevelopmentRegion keyword specifies a string value to identify the bundle region. It usually corresponds to the author's mother tongue. If you cannot find the resource of your preferred region or language, the system uses this value.
CFBundleDisplayName
The CFBundleDisplayName keyword specifies a string value to identify the display name of the bundle. Finder and other user interface components will display it to users. This name can be different from the bundle name in the file system. By adding the keyword to the InfoPlist. strings file in the appropriate. lproj subdirectory, You can localize the keyword. If you need to localize this keyword, you should also provide a localized version of The CFBundleName keyword.
For more information about the display name, see "localized file system name ".
CFBundleDocumentTypes
The CFBundleDocumentTypes keyword stores a set of dictionaries that contain the types of documents supported by the application. Each dictionary is called a type definition dictionary and contains keywords used to define the document type. The table A-2 lists the keywords that are supported in the Type Definition dictionary.
From cloud huaikong-abel