CLLocationManager 위치 권한 설정 Info.plist Privacy - Location When In Use Usage Description : 앱 사용중일 때만 GPS 사용 (for use in foreground) Privacy - Location Always and When In Use Usage Description : 위치 정보 항상 사용 (앱 사용 안할 때도) 위도 경도 가져오기 import UIKit class ViewController: UIViewController { var locationManager: CLLocationManager! var currentLocation: String? override func viewDidLoad() { super.viewDidLoad..