I have this:
NSUserDefaults *defauts = [NSUserDefaults standardUserDefaults];
NSString *namestr = [defauts objectForKey:@"savednamestring"];
NSLog(@"%@",namestr);
[unusedtext setText:namestr];
NSLog(@"%@",unusedtext);
NSLog(@"%@",unusedtext.text);
Now, first nslog prints out the content of namestr, for instance "Jack".
But the second nslog and 3rd nslog both give null.
when i try to pass namestr into entity it gives me an unrecognized
selector sent to instance error, and i know it is because of
namestr not passing anything into the entity, but how nslog print
out namestr at the first place. And do i need to convert it into
some sort of format to make it work?
unusedText? A NSString? – sidyll Nov 22 '12 at 12:14