ios - What type of method declaration is this? -
i came across line of code method being instantiated without use of either + or -. can please explain code :
void *abcd(nsstring *xyz)
that c function, of type
return_type method_name (argument_list)
your function returns void *
, generic pointer, , takes nsstring
arguement.
Comments
Post a Comment