Classes

The following classes are available globally.

  • Property list, A file with the default settings.

    In the macOS, iOS, NeXTSTEP, and GNUstep programming frameworks, property list files are files that store serialized objects.

    Property list files use the filename extension .plist, and thus are often referred to as p-list files.

    Wikipedia

    let plist = Plist(withNameAtDocumentDirectory: "Plister")
    plist.set(2020,for: "new.year")
    plist.get("new.year")
    // Output: 2020
    
    See more

    Declaration

    Swift

    public class Plist