CREATE operation not permitted

后端 未结 2 2037
一生所求
一生所求 2021-01-25 17:01

I am trying to utilize CloudKit in my iOS application, but when I attempt to create a new record for for a User record type (record type is named

2条回答
  •  不要未来只要你来
    2021-01-25 17:25

    Users is a special recordType that already exist in CloudKit. You should not create records yourself. Records will be automatically created for new users that are using your app. You also can't create subscriptions and query the Users recordtype. You can only query Users records directly by ID. You can store extra data in the Users recordType, but I think in your case it would be better if you named your record type something else.

提交回复
热议问题