Realm, Alamofire 사용 팁
2021. 6. 25. 05:23ㆍ아이폰 개발
GET request에 JSON 바디로 값을 넘기고자 할 경우
Just replace JSON.encoding -> URLEncoding
Alamofire.request(path,method: .get, parameters: params, encoding: URLEncoding.default, headers: nil)
https://stackoverflow.com/questions/55858837/how-to-send-a-json-body-in-a-get-request-with-alamofire
https://solarianprogrammer.com/2017/05/02/swift-alamofire-tutorial-uploading-downloading-images/
https://www.zehye.kr/ios/2020/04/01/12iOS_alamofire/
https://gonslab.tistory.com/14
https://greatps1215.tistory.com/25
"Property cannot be marked @objc because its type cannot be represented in Objective-C" 에러 발생시
Int, double과 같은 numeric 타입들은 단순히 Int? Double? 와 같은 optional 타입으로 하면 안되고 RealmOptional<T>() 타입을 사용해서 RealmOptional 변수의 value 프로퍼티를 이용해야합니다. 그리고 @objc dynamic var 가 아니라 let 을 사용합니다.
https://woongsios.tistory.com/84