In objective-c, how can I convert an integer (representing seconds) to days, minutes, an hours?
Thanks!
|
In objective-c, how can I convert an integer (representing seconds) to days, minutes, an hours? Thanks! |
|||
|
|
|
In this case, you simply need to divide.
For more sophisticated date calculations, such as the number of days within the ten million seconds after 3pm on January 19th in 1983, you would use the NSCalendar class along with NSDateComponents. Apple's date and time programming guide helps you here. |
|||||
|
|
try this,
and you can use it to get more details as days, weeks, months, and years by following the same procedure |
|||
|
|
|
The most preferred way in objective-c might be this one, as recommend by Apple in their doc.
Make sure not to retrieve components not defined with the unitFlags, integer will be "undefinded". |
||||
|
|
|
Use the built-in function strftime():
|
|||
|
|