#ios #swift #ftp #alamofire #xcode8
#iOS #swift #ftp #alamofire #xcode8
Вопрос:
Я не знаю, что я делаю не так? кто-нибудь может помочь
let imageData = UIImageJPEGRepresentation(pickedImage, 30)!
Alamofire.upload(imageData, to: "ftp://username:password@ip:21/")
.uploadProgress{ Progress in print("Upload Progress : (Progress.fractionCompleted)")}
.responseJSON(completionHandler: { response in
debugPrint(response)
})
Ошибка:
responseSerializationFailed(Alamofire.AFError.ResponseSerializationFailureReason.jsonSerializationFailed(Error Domain=NSCocoaErrorDomain Code=3840 "Number with minus sign but no digits around character 1." UserInfo={NSDebugDescription=Number with minus sign but no digits around character 1.}))
С использованием xcode8 и swift.
Ответ №1:
Вам следует использовать другую библиотеку. Alamofire поддерживает только протоколы http / https.
Комментарии:
1. У вас есть какие-нибудь идеи о другой библиотеке?