Easy way to do NSCoder enabled class

后端 未结 2 1428
滥情空心
滥情空心 2020-12-23 23:52

I have tons of objects which I want to save for offline use. Currently I use create NSCoder compliant classes for the objects and coded data to file to be available offline.

2条回答
  •  梦毁少年i
    2020-12-24 00:33

    The library https://github.com/nicklockwood/AutoCoding 's performance is not good since it does reflection using class_copyPropertyList everytime, and it seems it doesn't support some structs.

    Check https://github.com/flexme/DYCoding, it should be as fast as the pre-compiled code, and it supports various property types.

提交回复
热议问题