I have two strings with time interval data. I want to add that two time intervals and store into another string. This is my data
NSString *oldTime=@"00:24"; //Time format is "mm:ss"
NSString *newTime=@"00:07"; //Time format is "mm:ss"
After adding two strings i need to store that total time in another string like below
NSString *totalTime=oldTime+newTime; //(totalTime=00:31)
I am fresher to iOS so please send me the code for this problem. Thanks in advance