I am trying to parse JSON with date produced by the .NET service to NSDate object
{
"Dashboard": {
"Date": "/Date(1326063600000+0000)/"
}
}
What is the approach of converting such formatted date using SBJSON? I extracted the value to NSString using
//dict is NSDictionary with Dashboard
NSString* dateString=[dict objectForKey:@"Date"];
and then stopped. Any suggestions wil be appreciated.