pyke369 / PKMultipartInputStream

an NSInputStream subclass suitable for building multipart/form-data http requests bodies in MacOSX/iOS applications.
http://github.com/pyke369/PKMultipartInputStream
MIT License
73 stars 19 forks source link

Upload array of images #7

Closed nadagamal closed 9 years ago

nadagamal commented 9 years ago

Hi , Thanks a lot for your good library . I want to upload multiple images to server . What can I do . Appreciate you answer. Regards, Nada Gamal

pyke369 commented 9 years ago

Hello nadagamal,

You could probably add multiple "file" parts, i.e. for instance use the:

(void)addPartWithName:(NSString *)name filename:(NSString *)filename path:(NSString *)path;

method multiple times.

Regards, Pierre-Yves