当我查找如何将PFObject
写入磁盘时,我发现了一些非常复杂的东西。
我找到的最简单的选项是编写编码和解码函数,然后使用NSKeyedArchiver
(我还没有尝试过,因为我想确保我使用的是最合适的解决方案)。
更复杂的选项涉及第三方库,以便与Core Data同步。
Parse.com的工程师说他们正在开发能够制作offline usage work better的功能,但AFAIK还没有。
但是,PFUser
类的currentUser
方法具有以下描述和签名:
/*!
Gets the currently logged in user from disk and returns an instance of it.
@result Returns a PFUser that is the currently logged in user. If there is none, returns nil.
*/
+ (instancetype)currentUser;
似乎此方法中的任何内容都应该是在磁盘上使用PFObject
的好方法。
有没有办法知道这种方法背后的技术(以及必须进行保存的所有logIn*
方法的背后)?