NSString to NSDate for yyyy-MM-dd'T'HH:mm:ss.SSS+05:30 format

后端 未结 5 1073
一向
一向 2021-01-01 21:52

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         


        
5条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-01 22:39

    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=[[NSDateFormatter alloc]init];
    

提交回复
热议问题