tags:

views:

17

answers:

1

NSLog(@"%@",eventDescriptor); shows <NSAppleEventDescriptor: 'ldt '($90EFCFC700000000$)>

How to convert it to NSDate ?

Thanks in advance

A: 

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:].

JWWalker