Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How would I init an NSString with a NSDictionary object? Currently, im using this:
(string is already declared)
string = [NSString stringWithFormat:@"%@", [attributeDict objectForKey:@"id"]];


This works fine as I can NSLog it and everything, however, I cannot pass it to another method for some reason. I have tried doing it with a class named controller like this:
[controller externalEchoString:string] In controller there is a method named externalEchoString:

-(void) externalEchoString:(NSString *) test{
NSLog(@"%@", test);
}

For some reason it fails to NSLog the string.... Any ideas?

share|improve this question
I'm afraid you don't know what you're doing. – Hot Licks Jan 22 at 1:43
hahaha, yeah I second that.. – Rob Jan 22 at 1:44
I did do it once... I cant for the life of me remember what I did to succeed.... Im very tired so youl have to excuse my ignorance haha – JamerTheProgrammer Jan 22 at 1:48
Look for any of about 100 "how do I pass parameters between classes/view controllers" questions. – Hot Licks Jan 22 at 1:51

1 Answer

Solution: Call the method like this:

[ClassName methodName:[NSString stringWithFormat:@"%@", [dicthere objectForKey:@"id"]]];
share|improve this answer
3  
The stringWithFormat: is unnecessary. I see so many people on this site use that when it's not needed. – rdelmar Jan 22 at 2:04
I thought the might be another way. Mind elaborating? Thanks! – JamerTheProgrammer Jan 22 at 13:53
Just eliminate it -- [ClassName methodName:[dicthere objectForKey:@"id"]; – rdelmar Jan 22 at 16:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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