Code Monkey home page Code Monkey logo

ios-multpart-file-uploader's Introduction

MultipartUpload uses an operation queue to chunk up and upload all pieces of a large file to S3. It does not handle persistence so if you only get part way through an upload, you have to manage the process of re-uploading again.

Prerequisites

  1. Reachability - The best version to use is this one: https://github.com/tonymillion/Reachability
  2. AWSiOSSDK.framework - Part of the AWS iOS SDK download: http://aws.amazon.com/sdkforios/
  3. SystemConfiguration.framework - Part of the standard iOS SDK
  4. An AWS S3 account

Usage

See example application.

Create and retain an instance by passing your S3 credentials:

[self setUploader:[[[MultiPartFileUploader alloc] initWithS3Key:kS3AccessKey secret:kS3SecretKey bucket:kS3Bucket] autorelease]];

Create and retain an operation queue that can be used to do the individual part uploads:

[self setQueue:[[[NSOperationQueue alloc] init] autorelease]];

Pass a the URL for a locally-stored file to the uploader. Optionally set a delegate for progress updates.

[[self uploader] uploadFileAtUrl:url operationQueue:[self queue] delegate:self];

To do:

ios-multpart-file-uploader's People

Contributors

kpopper avatar nbransby avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.