当我的应用程序退出后台时,我正在尝试实现“恢复上传到Dropbox”功能。为此,我需要保存通过dropbox方法提供给我的 UInt64 :
func restClient(client: DBRestClient!, uploadFileChunkProgress progress: CGFloat, forFile uploadId: String!, offset: UInt64, fromPath localPath: String!)
我无法使用以下内容保存偏移值:
defaults.setObject(offset, forKey: "uploadedOffset")
如果我先将其转换为 unsignedlonglong ,我可以保存该号码,但我无法将其转发回 UInt64
有没有办法将UInt64保存到NSUserDefaults中,还是需要使用核心数据?