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
16
votes
6 answers

UITableView change header title color

I'm styling the UITableView in InAppSettingsKit and want to change the color of the header title: The labels Without title and Text Field should be white. How can this be done? Thanks.
Iñigo Beitia
  • 6,303
  • 4
  • 40
  • 46
14
votes
4 answers

How to build an iOS like settings module?

I am really new to iPhone development. Currentlly I am setting up an option module for my application. The user should be able to edit some preferences. My first approach was to have some text fields. But I really like how iOS handles editing…
DarkLeafyGreen
  • 69,338
  • 131
  • 383
  • 601
10
votes
2 answers

How do I add extra plists in xCode in the Settings.bundle for use with the InAppSettingsKit iPhone library?

This is probably a really silly question. but I'm struggling with it :( I am trying to add a Root.inApp.plist file to my project so that i can have inapp specific settings for my iPhone app. I have integrated InAppSettingsKit fine, its currently…
Marty
  • 2,965
  • 4
  • 30
  • 45
9
votes
1 answer

How to integrate the InAppSettingsKit?

I have just downloaded the InAppSettingsKit and I'm trying to integrate it with my app however I'm having some issues with it since I can't find any documentation to help me out. So far I've done the following steps... I added the InAppSettingsKit…
user843337
7
votes
2 answers

How to correctly integrate InAppSettingsKit with Storyboard in a TabBar?

I have been trying for a while now, but I can't figure out how to integrate InAppSettingsKit in an App, that uses Storyboard and a TabBar. I've got my tab bar defined in a Storyboard, now I want one tab to have this InAppSettingsKit as the root…
Markus Kasten
  • 1,170
  • 1
  • 10
  • 15
7
votes
1 answer

Hide Settings Bundle in Settings.app

I have created an iOS 4.0 app with a Settings bundle. I am using the InAppSettingsKit (http://www.inappsettingskit.com) which presents the settings in the app. This allows the user to modify those settings directly from within the app, without the…
Skoota
  • 5,280
  • 9
  • 52
  • 75
7
votes
1 answer

How can I remove Settings.bundle from previous app version?

My iPad app currently uses Settings.bundle to allow settings both via the built-in Settings.app as well as via InAppSettingsKit. I now want to switch to IASK entirely and disable the built-in settings. I have renamed the Settings.bundle folder to…
Gereon
  • 17,258
  • 4
  • 42
  • 73
5
votes
6 answers

Having problems reading settings while using InAppSettingsKit

I am using the InAppSettingsKit modules to manage my settings. I can include it in my project to the point where I can build a settings page that interacts correctly with my project. I have a root.plist that I can change and when I first run my app…
Steve
  • 111
  • 2
  • 7
4
votes
2 answers

Dynamic In-App Settings

I have an app where Location is important. Currently I have a multi-value setting in the settings bundle where I have 5 locations defined. The problem with this approach is that the settings bundle is static - i.e. I cannot update that from a JSON…
motionpotion
  • 2,656
  • 6
  • 42
  • 60
3
votes
2 answers

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

I have been looking at the sample app provided by InAppSettingsKit and I noticed the use of a couple of buttons: I would like to integrate a single red button in my app called reset, however I'm not sure how to do it. I've had a look at the code in…
user843337
3
votes
2 answers

Using InAppSettingsKit, how can I make it not show up in the settings app?

I am using InAppSettingsKit. https://github.com/futuretap/InAppSettingsKit I want to make it so the settings panel doesn't show up in settings, because right now it does. Is there any way to do this?
benr783
  • 63
  • 4
2
votes
1 answer

Xcode "Parse issue", "Unexpected type" in @protocol declaration

I recently added InAppSettingsKit to a project (although I don't think this is IASK specific). I'm using Xcode 4.2 and it is giving a strange error: …
Richard Stelling
  • 25,607
  • 27
  • 108
  • 188
2
votes
1 answer

How can I customise the InAppSettingsKit (background colour & nav bar colour)?

I would like to change the colour of the background to the InAppSettingsKit view to be black and I would also like to update the navbar colour to a dark grey. However I can't seem to find any details on how to do this. I have considered just going…
user843337
1
vote
1 answer

InAppSettingsKit and Storyboard: how to put a back button?

I'm using the ARC version of the InAppSettingsKit framework (https://github.com/tibr/InAppSettingsKit) to put the settings bundle into my application with Storyboard. I have managed to get the settings work but it shows the settings and I can't go…
1
vote
2 answers

Alternative to InAppSettingsKit

Is there an alternative to InAppSettingsKit that is simpler? I find myself needing only 20% of what it offers.
Iñigo Beitia
  • 6,303
  • 4
  • 40
  • 46
1
2 3 4 5 6 7