Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>It looks to me like your database store is getting created for iCloud, but nothing is being put into it.</p> <p>The receipt.0.cdt file appears in the transaction log folder for each device using that app through iCloud, but only initially (on store creation, or connection to an existing store from another device). The transaction logs that actually contain the data are named more like:</p> <pre><code>FFFE99DC-87D7-5CBE-BFD8-32E11-D3E934.1.cdt </code></pre> <p>and are of a size that is proportional to the number of records inserted/updated/deleted etc in that transaction. These transaction logs appear in the iCloud device folder related to the device that generated those transactions.</p> <p>A device that has connected to iCloud for that app, but NOT performed any transactions of its own, will just have the receipt.0.cdt file in it.</p> <p>If you unzip the receipt.0.cdt, you end up with a text file - and all this seems to contain is a reference to the device these transaction logs were generated against (though initially is empty). </p> <pre><code>mobile.DEVICE_ID:NUMBER_OF_TRANSACTIONS </code></pre> <p>And this then grows to show:</p> <pre><code>mobile.DEVICE_TWO:2:mobile.DEVICE_ONE:4 </code></pre> <p>so receipt.0.cdt is just a housekeeping reference for the number of transactions recorded against each device connected to that store in iCloud.</p> <p>Concentrate on making sure you're actually putting data into your <strong>iCloud</strong> store (using the correct context, aren't getting mixed up with the local store context etc), and then actually saving it.</p> <p>If none of that works, try blowing away the entire iCloud container and starting again in case something has gone wrong inside your ubiquity store (the standard response to just about every Core Data iCloud conundrum!).</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload