Property List Editor Download For Mac

Posted on  by 



  1. Property List Editor Download For Mac Download
  2. Property List Editor Mac Download
  3. Property List Editor Download For Mac Windows 10
  4. Property List Editor Download For Mac Os

PLIST Editor is an easy to use editor for property list (.plist) data. In a clean and uncluttered interface, it allows you to quickly create, visualize, modify, and save your.plist documents. PLIST Editor is probably the only 'source control' friendly property list editor that you find can on the market (except Xcode, of course).

Download Now PlistEdit Pro allows you to edit and control your PLIST files in OS X. PLIST files are 'property list' files, and contain a great deal of information regarding program and operating. Download Free PList Editor - A lightweight utility that enables its users to easily edit or create property list files with the help of a few intuitive tools. Download PLIST Editor for macOS 10.11 or later and enjoy it on your Mac. ‎PLIST Editor is an easy to use editor for property list (.plist) data. In a clean and uncluttered interface, it allows you to quickly create, visualise, modify, and save your.plist documents. PlistEdit Pro is a small, but useful utility designed for quickly opening the preference file of a specified application. This advanced property list and JSON editor empowers Mac and iOS developers to edit a variety of property list and JSON files.

An information property list file is a structured text file that contains essential configuration information for a bundled executable. The file itself is typically encoded using the Unicode UTF-8 encoding and the contents are structured using XML. The root XML node is a dictionary, whose contents are a set of keys and values describing different aspects of the bundle. The system uses these keys and values to obtain information about your app and how it is configured. As a result, all bundled executables (plug-ins, frameworks, and apps) are expected to have an information property list file.

By convention, the name of an information property list file is Info.plist. This name of this file is case sensitive and must have an initial capital letter I. In iOS apps, this file resides in the top-level of the bundle directory. In macOS bundles, this file resides in the bundle’s Contents directory. Xcode typically creates this file for you automatically when you create a project of an appropriate type.

Important: In the sections that follow, pay attention to the capitalization of files and directories that reside inside a bundle. The NSBundle class and Core Foundation bundle functions consider case when searching for resources inside a bundle directory. Case mismatches could prevent you from finding your resources at runtime.

Property List Editor Download For Mac

Creating and Editing an Information Property List File

The simplest way to create an information property list file is to let Xcode create it for you. Each new bundle-based project that you create in Xcode comes with a file named <project>-Info.plist, where <project> is the name of the project. At build time, this file is used to generate the Info.plist file that is then included in the resulting bundle.

Windows

To edit the contents of your information property list file, select the <project>-Info.plist file in your Xcode project to display the property list editor. Figure 1 shows the editor for the information property list file of a new Cocoa app project. The file created by Xcode comes preconfigured with keys that every information property list should have.

To edit the value for a specify key, double-click the value in the Xcode property list editor to select it, then type a new value. Most values are specified as strings but Xcode also supports several other scalar types. You can also specify complex types such as an array or dictionary. The property list editor displays an appropriate interface for editing each type. To change the type of a given value, make sure the value is not selected and Control-click it to display its contextual menu. From the Value Type submenu, select the type you want to use for the value.

Because information property lists are usually just text files, you can also edit them using any text editor that supports the UTF-8 file encoding. Because they are XML files, however, editing property list files manually is generally discouraged.

Adding Keys to an Information Property List File

Although the Info.plist file provided by Xcode contains the most critical keys required by the system, most apps should typically specify several additional keys. Many subsystems and system apps use the Info.plist file to gather information about your app. For example, when the user chooses File > Get Info for your app, the Finder displays information from many of these keys in the resulting information window.

You add keys to your app’s Info.plist using the Xcode property list editor. For information about how to use this editor, see “Edit property lists.”

Important: The property list editor in Xcode displays human-readable strings (instead of the actual key name) for many keys by default. To display the actual key names as they appear in the Info.plist file, Control-click any of the keys in the editor window and enable the Show Raw Keys/Values item in the contextual menu.

For a list of the recommended keys you should include in a typical app, see Recommended Info.plist Keys.

Localizing Property List Values

The values for many keys in an information property list file are human-readable strings that are displayed to the user by the Finder or your own app. When you localize your app, you should be sure to localize the values for these strings in addition to the rest of your app’s content.

Localized values are not stored in the Info.plist file itself. Instead, you store the values for a particular localization in a strings file with the name InfoPlist.strings. You place this file in the same language-specific project directory that you use to store other resources for the same localization. The contents of the InfoPlist.strings file are the individual keys you want localized and the appropriately translated value. The routines that look up key values in the Info.plist file take the user’s language preferences into account and return the localized version of the key (from the appropriate InfoPlist.strings file) when one exists. If a localized version of a key does not exist, the routines return the value stored in the Info.plist file.

List

For example, the TextEdit app has several keys that are displayed in the Finder and thus should be localized. Suppose your information property list file defines the following keys:

The French localization for TextEdit then includes the following strings in the InfoPlist.strings file of its Contents/Resources/French.lproj directory:

For more information about the placement of InfoPlist.strings files in your bundle, see Bundle Programming Guide. For information about creating strings files, see Resource Programming Guide. For additional information about the localization process, see Internationalization and Localization Guide.

Creating Platform- and Device-Specific Keys

You can designate a key in an Info.plist file as applying to a specific platform, a specific device type, or both. To create a platform- or device-specific key variant, combine a root key name with one or two qualifiers, using the following pattern:

key_root-<platform>~<device>

In this pattern, the key_root portion represents the original name of the key, as you find it in this document. The <platform> and <device> portions are optional and restrict the key’s applicability to a specific platform or device type. Notice that if you employ a platform qualifier, connect it with a hyphen (-), and if you employ a device qualifier, connect it with a tilde (~).

Use of a device qualifier is much more common than is use of a platform qualifier.

For a device qualifier, you can use one of the following values:

  • iphone The key applies to iPhone devices only

  • ipod The key applies to iPod touch devices only

  • ipad The key applies to iPad devices only

For a platform qualifier, you can specify a value of iphoneos or macos depending on which of these two platforms you are targeting.

When specifying a key variant, do so in addition to employing a corresponding key without any qualifiers, thereby ensuring you provide a reasonable default value. When the system searches for a key in your app’s Info.plist file, it chooses the key that is most specific to the current device and platform. If it does not find a qualified key, it looks for one without qualifiers. For example, to specify support for all device orientations on iPad, and three orientations for iPhone, the Xcode templates specify the corresponding keys in an app’s Info.plist file:

Custom Keys

iOS and macOS ignore custom keys you include in an Info.plist file. If you want to include app-specific configuration information in your Info.plist file, you can do so freely as long as your key names do not conflict with the ones Apple uses. When defining custom key names, prefix them with a unique prefix, such as your app’s bundle ID or your company’s domain name, to prevent conflicts.

Recommended Info.plist Keys

Each of the Xcode application templates includes an Info.plist file, but you can also construct one from scratch. When creating an information property list file, there are several keys you should always include. These keys are almost always accessed by the system and providing them ensures that the system has the information it needs to work with your app effectively.

Recommended Keys for iOS Apps

It is recommended that an iOS app include the following keys in its information property list file. Most are set by Xcode automatically when you create your project.

In addition to these keys, there are several that are commonly included:

  • UIRequiredDeviceCapabilities (required)

For descriptions of these keys, see the other chapters of this book.

Recommended Keys for Cocoa Apps

It is recommended that a Cocoa app include the following keys in its information property list file. Most are set by Xcode automatically when you create your project but some may need to be added.

These keys identify your app to the system and provide some basic information about the services it provides. Cocoa apps should also include the following keys to identify key resources in the bundle:

Note: If you are building a Cocoa app using an Xcode template, the NSMainNibFile and NSPrincipalClass keys are typically already set in the template project.

For descriptions of these keys, see the other chapters of this book.

Commonly Localized Keys

In addition to the recommended keys, there are several keys that should be localized and placed in your language-specific InfoPlist.strings files:

For more information about localizing information property list keys, see Localizing Property List Values.



Copyright © 2018 Apple Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2018-06-04

1. For XML plists (the most commonly used) and OpenStep/ASCII plists, it maintains the order of dictionary elements and the editing capabilities are on parity with Xcode, so you don't see a difference between a file edited in PLIST Editor and one edited in Xcode.

2. • Find & Replace also lets you configure where in the text to look for matches: 'Contains', 'Equals To', 'Starts With', 'Ends With' and 'Regular Expression' • Sort items • Undo and redo • Edit the elements of a property list.

3. PLIST Editor is probably the only 'source control' friendly property list editor that you can find on the market (except Xcode, of course).

4. • 'Source control' friendly - for XML and OpenStep/ASCII property lists the order of dictionary elements is preserved, showing them in the same order as they are defined in the file.

Features and Description


Key Features

Latest Version: 1.29

  • Licence: $3.99

  • What does PLIST Editor do? PLIST Editor is an easy to use editor for property list (.plist) data. In a clean and uncluttered interface, it allows you to quickly create, visualise, modify, and save your .plist documents.PLIST Editor is probably the only 'source control' friendly property list editor that you can find on the market (except Xcode, of course). For XML plists (the most commonly used) and OpenStep/ASCII plists, it maintains the order of dictionary elements and the editing capabilities are on parity with Xcode, so you don't see a difference between a file edited in PLIST Editor and one edited in Xcode.PLIST Editor can be used as a lightweight Xcode alternative, having more features, using less disk space, less memory and starting up much faster.Core features:• Open and save property list files in XML, Binary and OpenStep/ASCII format.• Import plist data contained in .mobileconfig or .mobileprovision files or other files which are encoded using Cryptographic Message Syntax (CMS). For the files encoded using CMS there is support to see information about the signers (email address and certificate) and the additional certificates which might be included in the message.• Multiple selection - works on sibling elements• Cut, copy, paste, duplicate, delete and reorder the elements. You can do all these operations even when multiple elements are selected.• 'Source control' friendly - for XML and OpenStep/ASCII property lists the order of dictionary elements is preserved, showing them in the same order as they are defined in the file. Similarly, when the property list is written to disk, the order of items from a dictionary written to disk is the same as the one seen on screen. This is especially useful when you keep the files in a repository, because only the relevant changes will be shown when diff-ing the edited files.• Find & Replace text in the property list elements. You can choose where the Find (and Replace) will take place: in 'Key' column or 'Value' column or both. The option which controls which columns will be searched is available by clicking the 'search' image in the find bar (Command + F) and then accessing the options from 'Find In' submenu.• Find & Replace also lets you configure where in the text to look for matches: 'Contains', 'Equals To', 'Starts With', 'Ends With' and 'Regular Expression'• Sort items• Undo and redo• Edit the elements of a property list. This works both for a single item (be it key or value) or for multiple items (via 'Edit -> Edit Value...').• Open and edit the files created using NSKeyedArchiver without any loss of information• Support for pasting plist data, either from raw XML or from Xcode• Copy elements as Swift objects so you can use them in Xcode• Copy elements as Objective-C objects, both modern and classic syntax, so you can use them in Xcode• Copy elements as JSON data, both indented and compact JSON• Copy elements as XML, Binary (Base 64 encoded) and OpenStep/ASCII plists• Embed selected elements in array or dictionary• Shift elements to left or right• Quickly move elements up or down• Row height which accommodates multi-line text• 'Add' and 'Remove' buttons on the outline element which is tracked by mouse• Option in Preferences to choose the default font, along with the font size• Option in Preferences to 'Alternate Row Colours' in the outline• Ability to increase and decrease font size for better readability, per each document individually• Versions support• Option, in Preferences, to disable the Auto Save (and Versions)• Detect when the document is changed by another application• Double click one of column separators to resize the corresponding column so the largest text in that column will be visible• Toolbar to access common operations• Dark Mode support on macOS Mojave 10.14 and above

    Download for MacOS - server 1 --> $3.99

    Property List Editor Download For Mac Download

    Download Latest Version

    Download and Install PLIST Editor

    Property List Editor Mac Download

    Download for PC - server 1 -->
    MAC:
    Download for MacOS - server 1 --> $3.99

    Property List Editor Download For Mac Windows 10


    Thank you for visiting our site. Have a nice day! Property List Editor Download For Mac

    Property List Editor Download For Mac Os

    More apps by Vlad Badea





    Coments are closed