Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i'm new to NSUserDefaults and have been having a hard time getting information about it... The thing is i'm trying to have a subview that'll ask the user for some data, but only the first time they open that subview, i was trying to make the 'ok' button the one that activates the boolean for the key... what i did was this

At .h file

@property (nonatomic,retain) IBOutlet UIView* myView;
@property (nonatomic, retain) IBOutlet UIButton* OK;
-(IBACtion)OK:(UIButton *)sender;

At .m in the viewDidLoad:

if([[NSUserDefaults standardUserDefaults] boolForKey:@"OKButton"]){
self.myView.hidden=YES;
}
else{
self.myView.hidden=NO;
}
};

and then

-(IBAction)OK:(UIButton*)sender{
if(sender.tag==1){
self.myView.hidden=YES;
[[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"OKButton"];
[[NSUserDefaults standardDefaults]synchronize];
}
else{
self.myView.hidden=NO;
[[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"OKButton"];
[[NSUserDefaults standardDefaults]synchronize];
};

the problem is every time I click on the OK Button, the app crashes "terminate called throwing an exception... Any suggestions??

Thanks in advance :)

share|improve this question
what is the exactly exception? empty/null pointer? – meadlai Jan 4 at 3:39
unrecognized selector sent to instance i think – emp233 Jan 4 at 3:43
so, that would be your problem, any warning on your Xcode editor? have a check.... – meadlai Jan 4 at 3:52
nop... it says no issues... what exactly does that error mean?? – emp233 Jan 4 at 3:55
Oh thanks! i've found it... it was all on the storyboard – emp233 Jan 4 at 4:00
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.