gpt4 book ai didi

php - 使用xcode上传图像(MySQL + PHP)

转载 作者:行者123 更新时间:2023-11-29 23:48:28 29 4
gpt4 key购买 nike

我正在尝试使用 XCODE 中的 PHP 将图像上传到 MySQL 数据库,但遇到一些问题,因为它不起作用。当用户插入文本时它工作正常,但当涉及到图像时我无法做到。

我已经阅读了一些教程和示例,但它们在我的 xcode 项目中不起作用。你能帮我解决这个问题吗?

这是我的代码:

- (IBAction)uploadPhoto:(UIButton *)sender {

NSLog(@"Photo enviada");
/*
NSString *strURL = [NSString stringWithFormat:@"http://example.com/upload.php?image=%@",_imageView.image];
NSData *dataURL = [NSData dataWithContentsOfURL:[NSURL URLWithString:strURL]];
NSString *strResult = [[NSString alloc] initWithData:dataURL encoding:NSUTF8StringEncoding];
NSLog(@"%@", strResult);
*/
NSData *imageData = UIImageJPEGRepresentation(_imageView.image, 90);
NSString *urlString = @"http://autograpp.com/upload.php";

NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];
[request setURL:[NSURL URLWithString:urlString]];
[request setHTTPMethod:@"POST"];

NSString *boundary = [NSString stringWithString:@"---------------------------14737809831466499882746641449"];
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundary];
[request addValue:contentType forHTTPHeaderField: @"Content-Type"];

NSMutableData *body = [NSMutableData data];
[body appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithString:@"Content-Disposition: form-data; name=\"userfile\"; filename=\"ipodfile.jpg\"\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithString:@"Content-Type: application/octet-stream\r\n\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[NSData dataWithData:imageData]];
[body appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[request setHTTPBody:body];

NSData *returnData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
NSString *returnString = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding];
}

但是我遇到错误:

NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];

ARC 禁止自动释放的显式消息发送。

提前致谢。

最佳答案

您正在启用 ARC 的项目中使用 - autorelease;这是不必要的,也是不允许的。这段代码可能有点旧,并且早于 ARC(自动引用计数)。

如果更换

NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];

NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init];

它应该可以工作。

在 ARC 中,您不再需要保留/释放对象;这是自动完成的。

关于php - 使用xcode上传图像(MySQL + PHP),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25784316/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com