Questions tagged [inappsettingskit]

InAppSettingsKit is an open source solution to to easily add in-app settings to your iPhone apps. It uses a hybrid approach by maintaining the Settings.app pane. So the user has the choice where to change the settings.

InAppSettingsKit is an open source solution to to easily add in-app settings to your iPhone apps. It uses a hybrid approach by maintaining the Settings.app pane. So the user has the choice where to change the settings.

To support traditional Settings.app panes, the app must include a Settings.bundle with at least a Root.plist to specify the connection of settings UI elements with NSUserDefaults keys. InAppSettingsKit basically just uses the same Settings.bundle to do its work. This means there's no additional work when you want to include a new settings parameter. It just has to be added to the Settings.bundle and it will appear both in-app and in Settings.app. All settings types like text fields, sliders, toggle elements, child views etc. are supported.

The intention of InAppSettingsKit was to create a 100% imitation of the Settings.app behavior. However, we added some bonus features for extra flexibility.

98 questions
1
vote
1 answer

Customising iOS InAppSettingsKit gives different results on iPhone compared to simulator

I'm trying to change the background color of the InAppSettingKit view controller. I've tried subclassing and overriding the cellForRowAtIndexPath: - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath…
Howard Sandford
  • 1,650
  • 1
  • 11
  • 8
1
vote
0 answers

InAppSettingsKit bar with done button disappears

I've integrated InAppSettingsKit in my app and it works great 90% of the time. However, 10% of the time when I'm in the modal view, the top bar with the done button just disappears, leaving the user no option to close the settings. Has anyone else…
dougDNA
  • 11
  • 1
1
vote
1 answer

How to use InAppSettingsKit delegate to reconfigure changed app settings

I am using InAppSettingsKit to include preferences inside my app. I configured the preferences view using xcode's storyboard with the following simple steps: 1) I created a navigation controller and a table view controller 2) In the table…
F. A
  • 111
  • 1
  • 10
0
votes
1 answer

Validating preferences in inappsettingskit

I want to use the kIASKAppSettingChanged notification in inappsettingskit to validate preferences when they are changed. I know the notification contains the new value of the preference that was changed but does it contain the old value anywhere?…
Damian
  • 8,062
  • 4
  • 42
  • 43
0
votes
1 answer

Can the ShortTitles key be used with InAppSettingsKit PSMultiValueSpecifiers?

i'm using InAppSettingsKit and i'm trying to include the key "ShortTitles" in my plist file per:…
Andy
  • 105
  • 6
0
votes
1 answer

InAppSettingsKit pop the UINavigationController automatically?

Is it possible with IASK to have a PSMultiValueSpecifier automatically pop the stack when the user makes their selection?
Andy
  • 105
  • 6
0
votes
1 answer

xcode not incorporating changes to root.plist

i'm using inappsettingskit and i have everything working except that it seems to have stopped recognizing changes to my root.plist. i know i've see things before about cleaning out certain directories of xcode but the wierd thing here is that i am…
Andy
  • 105
  • 6
0
votes
1 answer

How to store the settings of the app using the IASKSettingsStore

i am using the InAppSettingsKit, but i have no idea how to save the settings of the app using the IASKSettingsStore Class. when i closes my application and reopen it, the settings are set to the default options.
Fahad Jamal
  • 341
  • 4
  • 17
0
votes
1 answer

How to get root.plist to recognize types provided by InAppSettingsKit

I'm having a hard time integrating InAppSettingsKit. First of all, XCode isn't recognizing that the settings.bundle I've added to my project actually contains files. So I have to open that bundle through the Finder to get at the root.plist…
Andy
  • 105
  • 6
0
votes
1 answer

InAppSettings keyboardDidHide or resignedFirstResponder

I'm using InAppSettingsKit with great success. Now I need to dismiss the inAppSettingsKit modal VC when editing ends in a TextField in inAppSettingsKit (the user hits Done on the keyboard). InAppSettingsKit has some delegate methods like: -…
0
votes
2 answers

Is it possible to implement a own IASKSettingsReader?

I use core-data for saving a dynamic (small) amount of entities. These entities have a property for "Display" and "Push", which i sync with my server for each entity. Now i want to add InApp-Settings to give the user the possibility, to change these…
Pascal Mathys
  • 609
  • 1
  • 9
  • 17
0
votes
2 answers

InAppSettingsKit multi value not showing options

I have just managed to create my settings.bundle and set up a selection of different settings. However when I run my app and view the settings via InAppSettingsKit, the multi value options aren't displayed. I see the title and I can select it, then…
user843337
0
votes
1 answer

InAppSettingsKit Done button does not show up on view controller

I am trying to use InAppSettingsKit from my Swift app (via Swift package dependency to version 3.3.3), and I would like to be able to use the settingsViewControllerDidEnd delegate callback to determine when the user has dismissed the settings…
BP.
  • 10,033
  • 4
  • 34
  • 53
0
votes
2 answers

Set the value for Child Pane

Using inAppSettingsKit, I'm trying to display the value of a Child Pane element in the summary tableCell. TableCell correctly display the Title but not the value :/ Here is a snippet of my Root.plist file:
pierrefevrier
  • 1,570
  • 4
  • 22
  • 33
0
votes
1 answer

Why does InAppSettingsKit override my TabBarItemTitle?

i am using InAppSettingsKit pod in my iOS app, developed without storyboard. I have a MainTabBarController where I initialize my ViewControllers. Everything works fine, BUT when I start the App in Simulator (where phone language is English) or on my…