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

Swift: How do I add a button to the InAppSettingsKit setting view (iPhone/iPad)?

I followed the instructions in "How do I add a button to the InAppSettingsKit setting view (iPhone/iPad)?" I have the button appearing in the settings screen. However, I can't receive input when clicked. my bridge header: #include…
jlo-gmail
  • 4,453
  • 3
  • 37
  • 64
1
vote
1 answer

What is the proper way to set a delegate for a InAppSettingsKit view controller without subclassing

I need to create a IASKSettingsDelegate to respond to settingsViewControllerDidEnd in a StoryBoard setting. I have made AppDelegate implement that delegate protocol (it was an idea) but I can't seem to figure out how to connect it as the delegate of…
ferik
  • 531
  • 3
  • 11
1
vote
1 answer

Push UIViewController from Settings

I'm trying to push a UIViewControllerfrom a Settings bundle, like this: [1] [2] I have the Child Pane pointing to another plist but I don't see anything in the documentation how to tie a UIViewController to the selector. Is there a PSSpecifier I am…
hedrick
  • 211
  • 4
  • 13
1
vote
1 answer

Could InAppSettingsKit do this, or is there another library?

I'm trying to implement a system whereby the user is initially presented with a single tablecell, in a uitableview (grouped style), within a uinavigationview. --------------- + | add record | --------------- When they click on the cell, they…
cannyboy
  • 24,180
  • 40
  • 146
  • 252
1
vote
1 answer

How to programmatically set multi-value preference?

I am using the InAppSettingsKit. Now I want to create a multi-value preference with 24 different values and titles for the user to choose from (for each hour of the day). Since I do not want to type all the values by hand, I'd like to know if there…
Philipp Jahoda
  • 50,880
  • 24
  • 180
  • 187
1
vote
1 answer

How to set e-mail address in InAppSettingsKit?

I have set up InAppSettingsKit to send an e-mail like this: DefaultValue IASKMailComposeToRecipents IASKMailComposeBody
Espen
  • 110
  • 8
1
vote
1 answer

Different setting for InAppSettingKit

I have checked this & this and also other questions related to InAppSettingsKit, but couldn't reach to the solution.I have downloaded LinPhone in which InAppSettingsKit is used for setting. Now, my requirement is I have to change the settings for…
Piyush Dubey
  • 2,416
  • 1
  • 24
  • 39
1
vote
0 answers

InAppSettingsKit IASKButtonSpecifier not working

Help please! For two days I try to get this working. I integrated IASK with a TableViewController and IASKAppSettingsViewController as custom class. I followed the Sample App, but using a Storyboard and I inserted the ARC codes. I am also using…
Rinaldo
  • 54
  • 5
1
vote
1 answer

How to customise colours InAppSettingsKit?

Maybe I am missing something obvious, but it seems that the only way to change colours of the cells is to change the code in IASKAppSettingsViewController and/or IASKPSTextFieldSpecifierViewCell. Even that doesn't seem to work for everything. I am…
yuzer
  • 124
  • 8
1
vote
1 answer

Hide cells in InAppSettingsKit dynamically (target oriented)

I have two targets (let's say lite and pro) in my project and I want to change the content of settings according to the target. Is it possible to do that? Can I hide some cells from code? Thanks...
Turkdogan Tasdelen
  • 898
  • 1
  • 11
  • 25
1
vote
1 answer

InAppSettingsKit child pane not showing, using Navigation controller

I'm using InAppSettingsKit and my child panes are not showing up. I found a post (Stackoverflow) about using Navigation Controllers, which I am. On the General.plist I have the same view as the Root.plist. I have done some searching and all I can…
1
vote
1 answer

Settings Changed Notification In Subclass Of IASKAppSettingsViewController

I have a subclass of IASKAppSettingsViewController that I, of course, use to display and handle various events for the settings I present to the user. In this subclass, I am trying to receive the notification that settings were changed by adding…
Moebius
  • 700
  • 7
  • 25
1
vote
0 answers

Is Settings.Bundle initialised automatically now?

I have implemented settings for my app using settings.bundle and my app has been around for 2 years now. I have some settings that are set from within the App rather than from IOS Settings App. My issue before was that if the user did not initialise…
Sean
  • 440
  • 1
  • 6
  • 20
1
vote
1 answer

InAppSettingsKit UIWebView

How do you add a UIWebView (to load a live site, not an HTML page) to show as a sub-view of IASK? I see this example in the sample app, but it is using a static local page.
ebi
  • 4,862
  • 6
  • 29
  • 40
1
vote
1 answer

Display Selected Value For Slider InAppSettings Kit

I am using InAppSettingsKit and I have a slider. I want to display the closest integer in the heading on the row above. I am not really concerned about the settings from the iphone settings but the one from within my app Here is my…
Ryan Heitner
  • 13,119
  • 6
  • 77
  • 119