Z_PK Column in Core Data Database

后端 未结 3 1269
暖寄归人
暖寄归人 2021-01-01 07:13

Is it possible to fetch the number from the Z_PK column created by Core Data? If so, would you fetch this column the same way you would fetch attributes you created manuall

3条回答
  •  余生分开走
    2021-01-01 07:37

    You could use sqlite to directly access the columns created by CoreData.

    However, you shouldn't depend on Z_PK or any of the columns to stay consistent. The schema could change (and has) between releases. Apple has stated this in WWDC videos.

提交回复
热议问题