This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
import Combine | |
/* | |
Problem: A tableview with a timer running on each cell, the timer should start only after the cell has been viewed. | |
The timer's state should be changed to pause when tapped, and back to running when tapped again. | |
*/ |