Debugging Combine

이세진·2022년 9월 20일
0

iOS

목록 보기
44/46

print


let publisher = (1...3).publisher

publisher
    .print("DEBUG")
    .sink {
        print($0)
    }

// 출력값
DEBUG: receive subscription: (1...3)
DEBUG: request unlimited
DEBUG: receive value: (1)
1
DEBUG: receive value: (2)
2
DEBUG: receive value: (3)
3
DEBUG: receive finished
profile
나중은 결코 오지 않는다.

0개의 댓글