NSLog(@"%@",eventDescriptor);
shows <NSAppleEventDescriptor: 'ldt '($90EFCFC700000000$)>
How to convert it to NSDate ?
Thanks in advance
NSLog(@"%@",eventDescriptor);
shows <NSAppleEventDescriptor: 'ldt '($90EFCFC700000000$)>
How to convert it to NSDate ?
Thanks in advance
It's probably a LongDateTime value, so you'd extract the data as LongDateTime, then maybe pass it through UCConvertLongDateTimeToCFAbsoluteTime
and then use +[NSDate dateWithTimeIntervalSinceReferenceDate:]
.