You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.
I am use AFAmazonS3Manager to upload files to S3 bucket by referencing the code in usage example. But How to cancel a uploading process? And can I delete a file from S3 using AFAmazonS3Manager? How?
Thanks.
The text was updated successfully, but these errors were encountered:
Put following method in AFAmazonS3Manager.m
-(void)cancelAllOperation
{
if ([self.operationQueue operationCount] > 0)
{
[self.operationQueue cancelAllOperations];
}
}
call it when you want to stop it
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
I am use AFAmazonS3Manager to upload files to S3 bucket by referencing the code in usage example. But How to cancel a uploading process? And can I delete a file from S3 using AFAmazonS3Manager? How?
Thanks.
The text was updated successfully, but these errors were encountered: