I am currently working on iPhone feedback type of application. Where users can take multiple of images from camera. And also he can give feedback and remark on that. So, I need to send both text and images to the server. For that I have created one entity class with all their attributes (all texts and images). So at the time only I need to send more than 70 thumbnail images via POST using single php url. Because of the large memory size of JSON data Can we send image to the server by using his image UUID instead of data?
Max limit of POST is about 8MB by default.. Can we send image UUID to the server instead of image data or is there any other way?
here is my code :
+ (NSString *)getNewGUID
{
CFUUIDRef theUUID = CFUUIDCreate(NULL);
CFStringRef string = CFUUIDCreateString(NULL, theUUID);
CFRelease(theUUID);
return (__bridge NSString *)string;
}
If I will use image UUID then is an image will display in other iPhone devices also?
Please, help me out of this.