i have a C type matrix of structs in my program. I want to write it in a file for older devices who don’t have multitasking.
is there any simple way to write it to disk or do i have to wrap it in a custom object and write that?
an example would be great.
You can use
NSData‘sdataWithBytes:length:method to wrap your matrix and write it to file.