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
- uitableview
- clean architecture
- 리펙토링
- Clean Code
- 스위프트
- ribs
- HIG
- UICollectionView
- Human interface guide
- Xcode
- 애니메이션
- swift documentation
- MVVM
- collectionview
- SWIFT
- 리팩토링
- 클린 코드
- uiscrollview
- 리펙터링
- rxswift
- Refactoring
- combine
- UITextView
- Observable
- RxCocoa
- tableView
- ios
- swiftUI
- map
- Protocol
Archives
- Today
- Total
김종권의 iOS 앱 개발 알아가기
[iOS - swift] timer 구현 (background에서 다시 foreground로 온 경우에도 적용) 본문
iOS 응용 (swift)
[iOS - swift] timer 구현 (background에서 다시 foreground로 온 경우에도 적용)
jake-kim 2020. 11. 30. 02:39
원리
- Date()라는 것을 사용하여, 화면이 처음 등장한 시간 때를 기록
- Timer의 scheduler에서 현재 시간과, 위의 기록된 시간을 비교하여 시간이 얼마나 지났는지 체크
- 위와 같이 하면, 사용자가 background에 갔다와도 시간이 흐른만큼 Timer에 반영
주요 코드
- Timer객체를 전역에 선언 (Timer가 필요없을 때 invalidate시켜주기 위함)
var timer = Timer()
...
deinit {
timer.invalidate()
}
- 처음 화면이 들어난 시간을 기록하기 위해 Date형의 변수를 전역에 선언
var startTime: Date?
- Timer로직 함수
private func setTimer(startTime: Date) {
DispatchQueue.main.async { [weak self] in
self?.timer = Timer.scheduledTimer(withTimeInterval: 1, repeats: true) { [weak self] timer in
let elapsedTimeSeconds = Int(Date().timeIntervalSince(startTime))
let expireLimit = 10
guard elapsedTimeSeconds <= expireLimit else { // 시간 초과한 경우
timer.invalidate()
self?.lblInfo.isHidden = false
return
}
let remainSeconds = expireLimit - elapsedTimeSeconds
self?.lblTime.text = String(describing: remainSeconds.self)
}
}
}
cf) DispatchSourceTimer를 이용하여 background에서도 timer가 동작하도록 구현 방법(추천): https://ios-development.tistory.com/775
cf) UIDatePicker를 통해 시간을 입력 받고 Timer를 돌리는 예제: https://ios-development.tistory.com/773
* 전체 Source code: github.com/JK0369/ExTimer
'iOS 응용 (swift)' 카테고리의 다른 글
[iOS - swift] String에 substring, removeAt, insertAt 구현 (0) | 2020.12.10 |
---|---|
[iOS - swift] UITextField 포맷 (핸드폰 번호, 이메일, 카드 번호) - AnyFormatKit 사용 (0) | 2020.12.09 |
[iOS - swift] 커스텀 팝업 창 (custom popup, custom alert view) (5) | 2020.11.28 |
[iOS - swift] table view, section으로 cell 그룹화하는 방법, cell 그룹화 (서비스 약관 화면 만들기) (0) | 2020.11.28 |
[iOS - swift] JGProgressHUD 프레임워크 (iOS 로딩 뷰, loader, loading) (0) | 2020.11.26 |
Comments