0
如何將UIImage
或NSDate
轉換爲字節數組併發布到服務器。 在我的應用程序中,我必須將UIImage
轉換爲字節數組,我必須發佈。如何將UIImage或NSData轉換爲字節數組併發布到服務器?
對於我以後使用的ASIFormDataRequest
。
我的代碼是:
NSUInteger len = [self.dataImage length];
Byte *byteData= (Byte*)malloc(len); //converting date to byte array
[self.dataImage getBytes:byteData length:len];
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:[NSURL URLWithString:urlStr]];
[request setRequestMethod:@"POST"];
[request addData:self.dataImage withFileName:@"Image.png" andContentType:@"image/png" forKey:@"photo"];
[request setDelegate:self];
[request startAsynchronous];
[如何將NSData轉換爲iPhone中的字節數組?](http://stackoverflow.com/questions/724086/how-to-convert-nsdata-to-byte-array-in-iphone) –