Qiniu’s objc-sdk will upload the file in parts by default when the file is larger than 512KB, with each piece being 256KB; for specific documentation, please refer to http://developer.qiniu.com/docs/v6/sdk /objc-sdk.html, pause the upload and then continue, which essentially means recording the upload breakpoint and then continuing the upload. You can refer to the breakpoint recording unit test QNFileRecorderTest.m in the SDK. The progress processing can be obtained through the progress callback function QNUpProgressHandler.
Please tell me, I want to achieve the same thing as you. I encountered a problem when resuming the upload. How can I let it continue to upload after the program exits?
Qiniu’s objc-sdk will upload the file in parts by default when the file is larger than 512KB, with each piece being 256KB; for specific documentation, please refer to http://developer.qiniu.com/docs/v6/sdk /objc-sdk.html, pause the upload and then continue, which essentially means recording the upload breakpoint and then continuing the upload. You can refer to the breakpoint recording unit test QNFileRecorderTest.m in the SDK. The progress processing can be obtained through the progress callback function QNUpProgressHandler.
Please tell me, I want to achieve the same thing as you. I encountered a problem when resuming the upload. How can I let it continue to upload after the program exits?