250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- css3
- 비전공자
- 자바스크립트
- 개발자
- iPhone
- effect
- hover
- html5
- ipad
- MAC
- jQuery
- button
- SWIFT
- CSS
- keyframes
- 풀스택
- react
- javascript
- 애니메이션
- 프론트엔드
- 비전공 개발자
- Animation
- IOS
- iOS 개발자
- xcode
- php
- HTML
- 백엔드
- image
- front-end
Archives
- Today
- Total
목록Latitude (1)
비전공자 개발일기
Distance Calculator
import UIKit import CoreLocation func distanceCalculator(preLat: Double?, preLng: Double?, postLat: Double?, postLng: Double?) -> String { guard let preLat = preLat, let preLng = preLng, let postLat = postLat, let postLng = postLng else { return "" } let preLocation = CLLocation(latitude: preLat, longitude: preLng) let postLocation = CLLocation(latitude: postLat, longitude: postLng) let distance..
SWIFT
2023. 4. 21. 11:39