vote up 1 vote down star

I need to return a NSString from a function:

NSString myfunc ( int x )
{
    // do something with x  
    NSString* myString = [NSString string];
    myString = @"MYDATA";   
    // NSLog(myString);

    return *myString;   	
}

So, I call this function and get *myString. Is that a pointer to the data? How can I get to the data "MYDATA"?

flag

1 Answer

vote up 4 vote down check

I would rewrite this function the following way:

NSString* myfunc( int x )
{
   NSString *myString = @"MYDATA";

   // do something with myString
   return myString;        
}

In Objective-C it is more common to work with pointer to objects, not objects themselves, i.e., in your example with NSString*, not NSString.

Moreover, @"MYDATA" is already a string, so you don't need to allocate and initialize myString before the assignment.

link|flag
Wonderful! This OP says thanks:) – Alan Mar 2 at 13:05
@Alan. If this has helped, you could accept the answer. – Abizern Mar 2 at 15:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.