일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 문법
- WWDC24
- Architecture
- iot
- Xcode
- designpattern
- network
- GIT
- swift
- state
- factory
- dartz
- singleton
- isolate
- EventLoop
- flutter
- AppleDeveloper
- philipshue
- concurrency
- weatherkit
- Adapter
- uikit
- dart
- WiFi
- SampleApp
- SwiftUI
- LifeCycle
- OpenAI
- tuist
- builder
- Today
- Total
목록swift (17)
Jaebi의 Binary는 호남선
목차iOS는 주위의 사용가능한 모든 Wi-Fi network 이름과 정보를 가져오는 기능을 제공하지 않음하지만 현재 연결된 network의 SSID를 가져올 수는 있음PreliminaryiOS11 SDK or laterXcode에서 Hotspot Configuration Capability 설정 필요 (Signing & Capabilities)Wi-Fi에 연결하기 위해서는 target network의 SSID와 password를 알고 있어야함Wi-Fi Configuration사용자가 특정 Wi-Fi network에 연결하거나 Wi-Fi를 사용하는 accessory 설정등 기능Wi-Fi ConfigurationPersistent configuration: Settings에서 Wi-Fi 변경과 동일Join-..
목차OverviewWWDC 2024 에서 발표한 신규 WeatherKit 정보 사용하여 Sample App 개발https://developer.apple.com/videos/play/wwdc2024/10067/WWDC 2024에 발표한 기능 최소 하나씩 넣어보기What's New in WWDC 2024더 상세한 예측 (Forecast) 정보Forecast - Current, Hourly, Daily에 더 많은 값 (적설량, 유형별 강수량, 최고 풍속 등)온도 (최고, 최저) 및 강수량 (낮, 밤)의 변화 (Changes)온도 (최고, 최저), 강수량, 적설량 정보 과거와 비교 (Historical Comparisons)날씨 변화 강조Statistics API 추가Historical averages - 1..
목차WeatherKit REST APIApple Developer Program 필요WeatherKit identifier(Service ID), private key 만들기 (Apple 공식링크 참고)앱 기능 설정Apple Developer → Certificates, Identifiers & Profiles → Identifiers → 사용하는 identifier 선택 → App Services에서 WeatherKit Enable직접적인 데이터 가져오기는 Web Token으로 요청해서 가져와야함 (JWT 발급 방법)지원 REST API해당 위치에서 사용할 수 있는 DataSet 가져오기`GET /api/v1/availability/{latitude}/{longitude}`해당 위치의 날씨 데이터 가져..
목차Property Wrappers배경 → 상태를 나타내는 property들을 처리할 때 수정될때마다 trigger되는 logic이 있는경우가 많음ex) 새 값을 검증, 변환, 또는 listen등을 수행 할 수 있음이미 정의된 property가 있을 때, 이 property를 감싸서 computed-property로 만든 새로운 Wrapper 프로퍼티@propertyWrapper struct Capitalized { var wrappedValue: String { didSet { wrappedValue = wrappedValue.capitalized } } init(wrappedValue: String) { // didSet 실행은 초기화가 완료된 이후에만 트리거..