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
- 풀스택
- button
- 자바스크립트
- image
- 비전공자
- IOS
- react
- SWIFT
- MAC
- html5
- front-end
- jQuery
- xcode
- CSS
- iPhone
- php
- 프론트엔드
- effect
- 백엔드
- iOS 개발자
- Animation
- hover
- 개발자
- ipad
- keyframes
- javascript
- HTML
Archives
- Today
- Total
목록calculate (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