문제

How to solve the crashing in ASIHttpRequest.m file. I'm sending Uiimage to server by bytes format,

NSMutableData *imageData = [UIImageJPEGRepresentation(image, 1.0f) mutableCopy];
    [request setPostBody:imageData];
    [request addRequestHeader:@"fileName" value:[[imageArray objectAtIndex:selectedIndex] filename]];
 [request setDelegate:self];
[request startAsynchronous];

But app crashing fail with error method.

도움이 되었습니까?

해결책

Why are you setting header of the image type.Just set Post header and responsetype header.And after getting image data just make it encoded.

다른 팁

you can try out of two method

[request setFile:@"File Path" withFileName:@"image.png" andContentType:@"image/png" forKey:@"file"];

[request setData:Data withFileName:@"image.png" andContentType:@"image/png" forKey:@"file"];
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top