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 | 31 |
Tags
- Swift
- cloud functions
- Firebase
- Sendbird
- github
- UITableView
- 코테
- UIDatePicker
- task.yield()
- app intents
- watchkit
- fcm
- SwiftUI
- createml
- UIStackView
- tabman
- spring
- Project
- ios
- Tuist
- swift concurrency
- Flutter
- coreml
- Complication
- Apple Developer Academy
- Delegate Pattern
- widgetkit
- backend
- WWDC22
- Coding Test
Archives
- Today
- Total
azhy의 iOS 이야기
[iOS] WidgetKit[4] - Widget View 바로 업데이트 시키기 본문
2022년 7월 19일에 작성됨
기본적으로 widget 은 본인이 지정한 시간에 맞춰서 자동으로 업데이트시킵니다,
하지만 앱 쪽에서 데이터가 변경되거나 사진이 변경되거나 등 앱의 변경사항이 맞춰 바로 위젯도 변경해줘야 하는 경우가 생깁니다.
if #available(iOS 14.0, *) {
WidgetCenter.shared.reloadAllTimelines()
} else {}
이 코드를 넣으면 위젯이 바로 업데이트가 됩니다.
iOS 14 버전부터 사용이 가능합니다.
'iOS' 카테고리의 다른 글
[iOS] 두 번째 앱 출시 후기 (0) | 2024.11.12 |
---|---|
[iOS] Google AdMob 앱에 애드몹 광고 달기 (3) | 2024.11.12 |
[iOS] WidgetKit[3] - App과 Extension, UserDefaults 공유하기 + Realm DB 공유 (0) | 2024.11.12 |
[iOS] WidgetKit[2] - TimelineEntry, TimelineProvider (3) | 2024.11.12 |
[iOS] WidgetKit[1] - 개념 및 기본, WidgetConfiguration (0) | 2024.11.12 |