I'm just learning. In this tutorial, they've declared a block that takes NSUInteger
arguments, and then they simply pass in 6
and 4
. . . I was under the impression all these NS
things are object wrappers, different from the built-in c-types.
Now that I'm writing this, I remember them saying earlier that we didn't need the *
in NSUInteger
declarations because it wasn't like the other NS
objects.
But...an NSUInteger
is obviously not a c-type. So...what's going on here?