I have a function in which the array pointer passed it to change the material in the array:
- (void) arrayFunction: (Byte []) targetarray {// Do the material in targetarray}
This is an array of type Byte, but I donβt think I put the right thing in parentheses. What should it be instead of (Byte [])? There may be several arrays of different sizes passed to this function
Thanks in advance!
Demon kid
source share