I\'m quite confused about this one.
I want to grab, current time, than according to condition, I want to add the required time, to the current time. for example.
Do you mean current time, as in now?
If so, this will do it for you:
NSDate *now = [NSDate date]; // Grab current time NSDate *newDate = [now addTimeInterval:XXX] // Add XXX seconds to *now
Where XXX is the time in seconds.