반응형
iOS 15.5, Xcode 13.31, Swift 5, UIKit 환경에서 진행했습니다.
let model: Model
AF.request(url, method: .post).responseDecodable(of: Model.self) { response in
guard let value = response.value else { return }
self.model = value
print(self.model)
}
반응형
'iOS > 코드조각' 카테고리의 다른 글
[iOS, Swift] ScrollView 키보드 화면 처리하기 (0) | 2022.07.12 |
---|---|
[iOS, Swift] ScrollView endEditing 사용하기 (0) | 2022.07.12 |
[iOS, Swift] 정규식(이메일, 아이디, 닉네임, 패스워드, 전화번호) (0) | 2022.07.12 |
[iOS, Swift] 코드로 Custom Color 지정하기(UIColor Extension) (0) | 2022.07.06 |
[iOS, Swift] CollectionView 초기 position 변경하기 (0) | 2022.07.06 |