I'm trying to transfer data between 2 devices using bluetooth. Device A is holding custom NSObject. Device B is receiving this custom NSObject as NSData.
What is the best way to decode the received NSData into a custom NSObject ?
Thanks!
|
I'm trying to transfer data between 2 devices using bluetooth. Device A is holding custom NSObject. Device B is receiving this custom NSObject as NSData. What is the best way to decode the received NSData into a custom NSObject ? Thanks! |
|||
|
|
|
You have to implement the
And then you decode it from NSData to NSObject using:
The other way around:
|
||||
|