Do you use a pointer with a NSTimeInterval even though it is defined to be an int?
For instance do you use:
NSTimeInterval *time
or
NSTimeInterval time
Thank You!
Do you use a pointer with a NSTimeInterval even though it is defined to be an int?
For instance do you use:
NSTimeInterval *time
or
NSTimeInterval time
Thank You!
NSTimeInterval
is adouble
, double-click the symbol while holding Cmd to see thetypedef
. Usually you will use it directly, but you can use a pointer for example to be able to change the value in a method call:This is a weird example, but you get the idea.