Search code examples
iphoneiosplistuint32

how to store a uint32_t in a plist


I have a plist where I would like to save a some response details from my server too, however the variables are of type uint32_t and plists do not have a whole lot of type options to choose from other than, number - string - array - dictionary etc.

so what is the best course of action? conversion? if so how would I go about doing this.


Solution

  • [ NSNumber numberWithInt: value ]