I'm not very experienced with objective-c and I would need to advise for the following use case:
I'm coding a React native module for ios and one of the native methods on the ios side receives an NSArray containing integers (each integer has a value between 0 and 255).
In my objective-c code, I need to convert this NSArray to a Byte bytes[] to pass it then to some SDK I use.
How can I do that conversion?