How can I pass an array of strings to iOS bridge?
How about other types?
How can I pass an array of strings to iOS bridge?
How about other types?
I found out how to do it like this:
void _Mj_iosbridge_dosomething(const char* urls[], int urlcount) {
for (int i = 0; i < urlcount; i++) {
NSString* stringurl = CreateNSString(urls*);*
List
etc converted to array, also you have to specify the length of the array in the next parameter.