I've seen in some Objective-C code a double ** in variable declarations. For the most part, I understand the difference between with * and without. I know the difference between between a pointer non-pointer.
But what would this mean?
Is that a pointer to a pointer?
But what would this mean?
Code:
NSString **myString;
Is that a pointer to a pointer?