If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
I have to integers hours and minutes, I want to display them like this: 01:40 as a string
or like this if the hours int was 2 and the minutes was 5, 02:05
Is there any easy way to do this, I found the stringByAppendingString method but then I have to check to see if minutes <10 or hours<10 to put a zero before hand.