Bearer란?
https://velog.io/@cada/토근-기반-인증에서-bearer는-무엇일까
https://www.ssemi.net/what-is-the-bearer-authentication/
https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=jmjm223&logNo=221483149513
https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=jmjm223&logNo=221483149513
alamofire refresh token
https://sozohoy.tistory.com/25
https://ios-development.tistory.com/732
alamofire
https://velog.io/@chagmn/Swift-Alamofire-사용해보기4
https://www.raywenderlich.com/11668143-alamofire-tutorial-for-ios-advanced-usage
alamofire 고도화
https://grokswift.com/how-alamofire-router/
alamofire 참고할만큼 도전적인 예시
https://github.com/bounswe/bounswe2020group9/blob/7f96957ef393cc96f47168df4c050c7a51d18a85/Projects/Mobile/Bazaar-iOS/Bazaar-iOS/Model/APIManager.swift
오토레이아웃 변경과 animate
https://jinnify.tistory.com/66
https://ios-development.tistory.com/867?category=991286
uiimage tint color 바꾸기
https://baked-corn.tistory.com/66
테이블뷰 separator 없애기
tableView.separatorStyle = .none
custom switch
https://ios-development.tistory.com/992
UITableViewCell에 오브젝트를 추가할 때는 셀 자체에 추가하면 안되고 아래와 같이 컨텐츠뷰에 추가해야. 그렇지 않으면 터치가 안먹음.
https://developer.apple.com/forums/thread/19322
contentView.addSubview(brandSwitch) //O
// addSubview(brandSwitch) // X