How do I return two or more separate data values of the same/different type from a method in Objective-C?
I think I just don't understand the syntax for returning multiple values.
Below is the code I'm using in swift, I'm having trouble with the objective -C version.
func getData() -> (Int, Int, Int) {
//...code here
return ( hour, minute, second)
}