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 have a Mac app with a plain-text text view. I have been able to get it to save, etc, but when I change the font or font size in my app using the font panel, it is not saved when the app re-opens.

How can I create a way that my app will save the font and font size changes? Thanks!

share|improve this question
How are you saving the text now? – Rob Keniger Feb 25 '12 at 12:58
I am saving it as a .txt file in the Mobile Documents folder. – user1103804 Feb 25 '12 at 13:01

1 Answer

Save Font and Font Size in NSUserDefaults and load from NSUserDefault at the time of application launching.

NSString *valueToSave = @"someValue";
[[NSUserDefaults standardUserDefaults]
    setObject:valueToSave forKey:@"preferenceName"];
to get it back later

NSString *savedValue = [[NSUserDefaults standardUserDefaults]
    stringForKey:@"preferenceName"];

Take a look at Save string to the NSUserDefaults? post.

share|improve this answer
Do you have some code for that? Sorry, I am new to this programming thing. – user1103804 Feb 25 '12 at 13:04
Take a look at Save string to the NSUserDefaults post. – Parag Bafna Feb 25 '12 at 13:06
Thanks, I'll give it a shot. – user1103804 Feb 25 '12 at 13: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.