I don’t want to use double pointer. I am using a function in simpler form as below.
-(NSString *) getName
{
return name;
}
So what is the correct way to take the returned NSString *?
By using @selector(getName) i am not able to get the returned value name.
Thank you in advance
You should use
NSInvocationobject instance for calling a selector and resolving returned result.