I want to add 30 minutes to the current time.
I tried this
NSDate *dateToFire = [[NSDate date] dateByAddingTimeInterval:5*60];
BUt just need the time like 10:00:30 ---> +30 = 10:30:00
Suggestions are always appreciated.
Thanks
|
Use this way:
|
|||||||
|
|
Please add it like this: 30*60. You are adding just 5 mins in your code. The time that you are adding is in mili seconds. So you need to try this:
This will add 30 minutes in the current time. |
|||||
|
|
Try this ::
Hopefully, It'll help you. Thanks. |
|||
|
|
dateByAddingTimeInterval:work? – Carl Veazey Jan 12 at 7:29