In the API , the selected day format is like 2013-11-01T23:00:00%2B0000
But my date format is like this: 2013-11-01T23:00:00+0000
To convert, I have used below code:
NSString *plus = [NSString stringWithFormat:@"%@%@", [timeStamp substringToIndex:[timeStamp length]-5], @"%2B0000"];
Instead of (+) the unicode of plus which is (%2B).
But when I select the day from Tapku calender, I receive the error which says date format is wrong. How can I fix this problem?