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?
