我想從我的iOS應用上傳或保存圖像到FTP服務器。但每次我得到錯誤,ftp未連接如何在ios上的ftp服務器上傳圖片.png或.jpg?
我使用SCRFTPRequest庫。
這裏是我的代碼...
UIImage *image = [info objectForKey:@"UIImagePickerControllerOriginalImage"];
NSData * imageData = UIImagePNGRepresentation(image);
NSFileManager * fileManager = [NSFileManager defaultManager];
NSArray * paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString * documentsDirectory = [paths objectAtIndex:0];
NSString *fullPath = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.png",image]];
[fileManager createFileAtPath:fullPath contents:imageData attributes:nil];
NSLog(@"image saved");
[picker dismissViewControllerAnimated:YES completion:nil];
ftpRequest = [SCRFTPRequest requestWithURL:[NSURL URLWithString:@"ftp://myURL"] toUploadFile:fullPath];
ftpRequest.username = @"DemoUser";
ftpRequest.password = @"DemoUser";
ftpRequest.customUploadFileName = @"inapp";
ftpRequest.delegate = self;
[ftpRequest startAsynchronous];
您可以使用[QueueFTP(https://github.com/soulslicer/QueueFTP)了點。 –
@HimanshuJoshi在你的鏈接有一個PHP鏈接是指定的,但我不知道它可以幫助我拯救出來。 –
嘗試使用白浣熊https://github.com/valentinradu/WhiteRaccoon –