CloudKit records saving progress

后端 未结 1 648
灰色年华
灰色年华 2021-01-24 18:40

I want to save Event and Image (for event) records. I want to show uploading progress in UI. Event is little object with text and location. Image is big object with photo as UII

相关标签:
1条回答
  • 2021-01-24 19:14

    The documentation for the CKModifyRecordOperation states: The operation object executes this block zero or more times for each record in the recordsToSave property.

    So if the save action for an object takes little time, then it could happen that you won't get a progress callback. As far as I know there is no way to influence the frequency of progress notifications.

    0 讨论(0)
提交回复
热议问题