I think on iOS any ArrayBuffers come through as NSData*, as long as they
are in the top-level exec() arguments (not nested within an object).
There's also:
[CDVPluginResult resultWithStatus:CDVCommandStatus_OK
messageAsArrayBuffer:data]
and:
[CDVPluginResult resultWithStatus:CDVCommandStatus_OK
messageAsMultipart:arr]
Which lets you send back either a single NSData*, or the latter an array
where each element can be a NSData (or other supported arg type)
On Mon, Aug 18, 2014 at 9:28 PM, Don Coleman <[email protected]> wrote:
> Is there an iOS equivalent of Android's CordovaArgs getJSONArray() and
> getArrayBuffer()?
>