I have a String with the time as follows;
NSString *time = "06.45 pm";
I need to assume that this time is on today's date and then get the current System time, and calculate the time difference between the two.
How can i do this ?
Note: The above time doesn't specify a date, (Only the time is given)
timeIntervalSinceDate:but i am not sure how to get the time difference . – sharon Hwk May 30 '12 at 1:12timeyou given is the same date as current system time. – HelmiB May 30 '12 at 1:13