refer to CGPointMake explaination needed?
Correct me if I am wrong, in the implementation of CGPointMake
, CGPoint p;
declare a local variable of a struct
, which should should be freed after leaving the scope. But why the function can return the value without risk?
Anyway, assume that implementation of CGPointMake
is correct, should I free the CGPoint that created by CGPointMake
?