반응형
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
- RxCocoa
- NavigationLink
- RxSwift
- @Binding
- graphql
- typeorm
- URL(string:)
- Operators
- subject
- @State
- operator
- IOS
- Bug
- swift6
- nestjs
- @EnvironmentObject
- Operater
- @Environment
- init?
- SWIFT
- nonisolated
- ios14
- init
- vim
- SwiftUI
- RFC1738/1808
- Creating Operators
- dismiss
- Xcode
- NullObject
Archives
- Today
- Total
목록Timer (1)
Tunko Development Diary

timer timer는 interval 연산자와 다르게 시작 시간을 지정할 수 있습니다. public static func timer(_ dueTime: RxTimeInterval, period: RxTimeInterval? = nil, scheduler: SchedulerType) -> Observable { return Timer( dueTime: dueTime, period: period, scheduler: scheduler ) } dueTime는 구독자에게 이벤트 전달되는 시작 시간입니다. preiod: 파라미터가 반복주기입니다. let disposBag = DisposeBag() print("시작 : \\(Date())") Observable.timer(.seconds(1), period: ...
Development/RxSwift
2022. 6. 7. 16:44