tags:

views:

38

answers:

1

I am using double[] instead of NSArray. Would anyone know how to encode it for archiving

+1  A: 

Two options come to mind:

  1. Convert it into an NSArray of NSNumber objects.
  2. Shoehorn it into an NSValue or NSData object.
Dave DeLong