画像ファイルをサーバーにアップロードしようとしています。https://github.com/valentinradu/WhiteRaccoonの例を適用しています
コードは次のとおりです。
UIImage *image = [UIImage imageNamed:@"hotel1.jpg"];
NSData *imageData = UIImageJPEGRepresentation(image, 0);
WRRequestUpload * uploadImage = [[WRRequestUpload alloc] init];
uploadImage.delegate = (id)self;
//for anonymous login just leave the username and password nil
uploadImage.hostname = @"***.***.***.***";
uploadImage.username = @"-------";
uploadImage.password = @"-------";
//we set our data
uploadImage.sentData = imageData;
//the path needs to be absolute to the FTP root folder.
//full URL would be ftp://xxx.xxx.xxx.xxx/space.jpg
uploadImage.path = @"/android_images/image.jpg";
//we start the request
[uploadImage start];
しかし、エラー -[WRRequestListDirectory stream:handleEvent:] [Line 1004] Unknown error! が発生します。
私は何かが欠けていますか?私を助けてください。