티스토리 뷰
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]) {
guard let location = locations.last else { return }
lastLocation = location
print(#function, location)
}
print(#function)!!!!!!!!
콘솔에 함수 이름이 나와..짱신기
'macOS, iOS' 카테고리의 다른 글
[iOS] Codable URL이 "" 일 때 dataCorrupted 안나게 하기 (0) | 2021.04.28 |
---|---|
[Swift] Firebase DynamicLink 활용해서 Deeplink 처리하기 (0) | 2021.04.26 |
[SwiftUI] Loading Indicator 만들기 (0) | 2021.04.24 |
[SwiftUI] TabViewStyle (0) | 2021.04.19 |
[iOS] 설정 앱 열기 (0) | 2021.04.16 |