I'm finishing a port for a project that was written in Swift to support Objective-C. A lot of the project was written to support Objective-C but not the properties on a particular class.
This is the property:
open var remainingTime: ( hours: Int, minutes: Int, seconds: Int)?
I'm guessing I can't just add @objc to this because "hours","minutes","seconds" are objects. How do I make this property visible to my Objective-C project?