티스토리 뷰
// 선언부
@State var currentDate = Date()
let timer = Timer.publish(every: 1, on: .main, in: .common).autoconnect()
// 뷰 안에서
Text(currentDate).onReceive(timer) {
self.currentDate = $0
}
'macOS, iOS' 카테고리의 다른 글
[iOS] 앱 foreground 상태에서 푸시 수신할 때 핸들링하기 (0) | 2020.03.17 |
---|---|
[iOS] Firebase APN(Apple Push Notification) 세팅하기 (0) | 2020.03.17 |
Swift에서 상대 시간으로 표시하기 (0) | 2020.03.12 |
[iOS] MapKit에서 Annotation text 바꾸기 (0) | 2020.03.11 |
[Swift] string에 character, 다른 문자열 포함되었는지 보기 (0) | 2020.03.11 |