My date string that I am getting is 2014-01-08T21:21:22.737+05:30 of this format. How do i confer it to NSDate?
I tried:
NSString *currentDate
I think you need to initialize the dateFormatter like this below in your code. Because if do not initialze always you will get the null value:-
dateFormatter
dateFormatter=[[NSDateFormatter alloc]init];