views:

101

answers:

1

I've seen there is a library called InAppSettingsKit - http://www.inappsettingskit.com/ - which lets your in-app settings mimic your settings within the Settings app.

But is there a way to get this to NOT use the Settings app as well? So it just allows you to change settings within the app. Or is there another library which does this?

+2  A: 

InAppSettingKit lets you use a local bundle for the in-app part (see documentation) Try only including this and not including the Settings.bundle

coneybeare
I can't find that in the documentation.
cannyboy
OK, thanks. Figured it out. I renamed the bundle to 'MySettings.bundle' and replaced a reference to 'Settings.bundle' to 'MySettings.bundle', reset the simulator and cleaned all targets, and it works.
cannyboy