ios 에서 백그라운드로 전송할수있는 오픈소스 라이브러리중 강력한 Alamofire가 있다.
https://github.com/Alamofire/Alamofire
Alamofire/Alamofire
Elegant HTTP Networking in Swift. Contribute to Alamofire/Alamofire development by creating an account on GitHub.
github.com
기본적인 HTTP 통신으로 GET POST 등의 기능을 간단하게 수행할수 있도록 도와준다.
먼저 내가 사용한 기능은 사진업로드와 다운로드 기능이다.
Swift에서 사진 업로드와 다운로드를 구현을 위해 Android에서 활용했던 HttpRequestor 의 기능을 검색 도중 알게 되었다.
사용법은 간단하다.
cocoaPods 으로 pod를 추가한다.
pod 'Alamofire', '~> 5.0'
이후
import Alamofire
Alamofire 를 사용할수있게 import 해준다.
AF.upload(multipartFormData: { multipartFormData in
// multipartFormData.append(데이터, withName: "Name")
}, to: URL)
.responseJSON { response in
//응답받아 처리하는곳
}
Upload 는 간단하게 FormData를 보낼수있다.
Server에서 받을 Name을 지정하고 데이터를 같이 보내면 서버에서 $_POST['Name'] 으로 받을수있다.
let destination: DownloadRequest.Destination = { _, _ in
let documentsPath = NSSearchPathForDirectoriesInDomains(.documentDirectory,
.userDomainMask, true)[0]
let documentsURL = URL(fileURLWithPath: documentsPath, isDirectory: true)
let fileURL = documentsURL.appendingPathComponent("image.jpg")
return (fileURL, [.removePreviousFile, .createIntermediateDirectories]) }
AF.download(file_url, to: destination)
.downloadProgress { progress in
print("Download Progress: \(progress.fractionCompleted)")
}
.response { response in
debugPrint(response)
if response.error == nil, let imagePath = response.fileURL?.path {
let image = UIImage(contentsOfFile: imagePath)
UIImageWriteToSavedPhotosAlbum(image!, nil, nil, nil)
}
}
다운로드는 먼저 fileUrl로 받아온 데이터를 다운로드 후 메모리에 적치한다.(이때 tmp파일로 임시 저장되며 UIImage를 활용할수 있게 된다.
그후 UIImageWriteToSavePhotosAlbum 메소드를 사용하여 Image를 저장할수 있는데 이때 포토라이브러리의 권한이 필수이다.
이렇게 하면 웹에서 사진의 URL정보만 넘겨받으면 사진을 바로 저장이 가능하다.
'코딩쟁이 > ios' 카테고리의 다른 글
[ios14] FCM Notification error 권한요청 안될때 (0) | 2020.09.18 |
---|---|
[swift IOS] ImagePickerController 사용하기 (0) | 2020.02.13 |
ios 앱배포 (0) | 2018.12.10 |
ios app 아이콘 생성 참고 (0) | 2018.12.10 |
ios 하이브리드앱 기본골격 참고 (0) | 2018.12.10 |