AppleCFArray - UBogun/Xojo-iosLib GitHub Wiki

Inherits from CFObject
Memory leak check: not yet done
Status: Very rudimentary

CFArray is the Core Foundation class for immutable object collections. It is interchangeable with NSArray, in iOSLib terms AppleArray. The mutable counterpart is CFMutableArray.
Usually, an array is much easier to fill in mutable form. Therefore there’s currently no constructor here!

##Properties Count As Integer (read-only): Returns the number of array elements.

##Methods PtrAtIndex (Index As Integer) As Ptr: Returns the element at array position Index in form of a pointer.