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 am new to XCode and iOS programming. So please assume nothing ...

I am trying to incorporate the inappsettings bundle into my project. It is the 3rd party product found at http://inappsettingskit.com/

I have included all (I think) the files from the kit as well as their settings.app bundle. Through IB, I have built a tab bar where each tab item is a navigational controller. The view of my "Settings" tab is a view controller of class IASKAppSettingsViewController.

When I run my app, the default setting screen included in the kit displays and everything seems to run correctly.

However, I cannot figure out how to actually use the settings that I select in my app. I believe that the settings are stored in [NSUserDefaults standardUserDefaults], but when I query this as below, NSString* s always comes back as nil.

NSUserDefaults* d = [NSUserDefaults standardUserDefaults];

NSString* s = [d objectForKey:@"ROOKIE"];

I have also tried initializing [[NSUserDefaults standardUserDefaults] as follows:

[[NSUserDefaults standardUserDefaults] registerDefaults:[NSDictionary dictionaryWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"Root~iphone.InApp" ofType:@"plist"]]];

I have added the key "ROOKIE" to the Root~iphone.InApp.plist file included in the Settings bundles. I put "ROOKIE" in the "key" column and some string value in the "value" column.

Maybe here is where I am doing something wrong? I don't really understand how the .plist files work and if I am accessing the correct one, or if I am doing it in the right way. I have played around and I can't seem to extract any value from any .plist file so it would seem it's my approach rather than the file?

Any insight would be appreciated.

share|improve this question
seems to be a dupe of your other question: stackoverflow.com/q/6667911/235297 – Ortwin Gentz Jul 13 '11 at 10:25
correct. I was thinking this one was a little too verbose so I made the other. Thanks for checking it. – Steve Jul 15 '11 at 0:04
Great, then why not accept my answer in the other thread? – Ortwin Gentz Jul 15 '11 at 15:49

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.