icloud之关键词

来源:互联网 发布:空中宣讲会软件 编辑:程序博客网 时间:2024/05/02 04:29

Glossary

  • Apple Push Notification service (APNs)  

    Apple service for propagating information to iOS and OS X devices.


  • CloudKit  

    An app service that stores structured application and user data in iCloud.


  • container  

    A data store containing multiple database used by one or more apps. The default container ID matches the app’s bundle ID.


  • container ID  

    A unique identifier for an app’s iCloud container.


  • database  

    The portion of a container used to store records. There’s one public database for the app and multiple private databases—one private database for each user.


  • development environment  

    Databases used to develop your app and evolve the schema that is not accessible by apps sold on the App Store or Mac App Store.


  • field  

    A property of a record type that can be set using a key-value pair.


  • just-in-time schema  

    Development environment feature that allows an app to create a schema by saving records.


  • predicate  

    An object that defines logical conditions for searching for objects conforming to key-value coding.


  • private database  

    A database for storing records owned by the current user that are not readable by the app unless the user enters their iCloud credentials on the device.


  • production environment  

    Databases accessed by apps sold on the App Store or Mac App Store.


  • public database  

    A database for storing records owned by the app that are shared between users. An iCloud account is not required to read records but is required to write records.


  • push notifications  

    A notification from a provider to a device transported by APNs.


  • record  

    An instance of a record type that can be created, read, and written to a database.


  • record identifier  

    An identifier for the location of a record in a database. Contains a record name and zone.


  • record name  

    A unique identifier for a record within a given zone. The record name is supplied by the app and can be used as a foreign key in another data source.


  • record type  

    A template for a set of records that have common fields.


  • record zone  

    A partition of a database to store records. Each database has a default zone and allows additional custom zones.


  • relationship  

    A record type field that associates one record to another.


  • role  

    Permissions for a group of users to create, read, and write records in the public database. The possible roles are world, authenticated, and creator.


  • schema  

    A collection of metadata that describes the organization of records, fields, and relationships in a database. In CloudKit, the schema includes record types, security roles, and subscription types.


  • subscription  

    A persistent query on the server that triggers notifications when records change.


  • to-many relationship  

    An association between a single record and one or more other records.


  • to-one relationship  

    An association between a single record and another single record.

0 0
原创粉丝点击