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
Hi, Vinays.
I have a problem with sending "Post" with list bitmaps.
If in iOS i can use AFNetworking to use this:
NSMutableURLRequest *request = [[CVClient sharedAFHTTPClient] multipartFormRequestWithMethod:@"POST" path:path parameters:params constructingBodyWithBlock:^(id formData){
int i = 0;
for (UIImage *image in self.m_itemInfo.arrayImages) {
NSData *data1 = UIImagePNGRepresentation(image);
[formData appendPartWithFileData:data1 name:@"image" fileName:[NSString stringWithFormat:@"%@-%d.png",user_id, i] mimeType:@"image/png"];
i++;
}
}
So, with your MultipartRequest Volley, can it solve this method?
:) Best regard! Hope you can help me. Thanks.
The text was updated successfully, but these errors were encountered:
Hi, Vinays.
I have a problem with sending "Post" with list bitmaps.
If in iOS i can use AFNetworking to use this:
NSMutableURLRequest *request = [[CVClient sharedAFHTTPClient] multipartFormRequestWithMethod:@"POST" path:path parameters:params constructingBodyWithBlock:^(id formData){
int i = 0;
for (UIImage *image in self.m_itemInfo.arrayImages) {
NSData *data1 = UIImagePNGRepresentation(image);
[formData appendPartWithFileData:data1 name:@"image" fileName:[NSString stringWithFormat:@"%@-%d.png",user_id, i] mimeType:@"image/png"];
i++;
}
}
So, with your MultipartRequest Volley, can it solve this method?
:) Best regard! Hope you can help me. Thanks.
The text was updated successfully, but these errors were encountered: