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

how to have 2 different setting page with inappSettings

Hi guys i will like to have 2 different setting page to show 2 different setting current i'm able to do in 1 setting view, how will i be able to separate into 2 different setting page ?
Desmond
  • 5,001
  • 14
  • 56
  • 115
1
vote
1 answer

Why am I prompted to sign some of my CocoaPods in XCode 14?

I opened up my project for the first time in a while, in XCode 14. It uses cocoapods, and always has. I now notice that two of my pods get an error prompt that they now have to be signed. See the image at the bottom. I can see that the two libraries…
Mathias
  • 3,879
  • 5
  • 36
  • 48
1
vote
1 answer

iPhone/iPad: Universal App and InAppSettingsKit

I have a application which is a universal application. On iPhone, it's a Tab Bar application and on iPad its a Split View app. For settings, I really wanted to include the three most important settings in my application, and then launch the Settings…
jww
  • 97,681
  • 90
  • 411
  • 885
1
vote
1 answer

How can I use InAppSettingsKit with SwiftUI?

I've created a UIViewControllerRepresentable wrapper for the IASKAppSettingsViewController so I can use it with my SwiftUI Project. It worked fine for a Toggle Switch but when I attempted a PSMultiValueSpecifier, my view did not transition to the…
app_dev55
  • 31
  • 4
1
vote
1 answer

InAppSettingsKit: How to customize the individual titles of added items from a PSChildPaneSpecifier?

I'm using InAppSettingsKit to create a section in my app's in-app settings where the user can add a number of custom items, each of which has its own set of properties (a string value and an int value). To do this, I'm following the example…
Jon Schneider
  • 25,758
  • 23
  • 142
  • 170
1
vote
2 answers

Subclassing IASKAppSettingsViewController

I'm trying to tweak the behavior of the default IASKAppSettingsViewController so it can provide custom subviewcontrollers (as for type = PSChildPaneSpecifier) for custom views (type = IASKCustomViewSpecifier). I've tried to subclass…
Claus Broch
  • 9,212
  • 2
  • 29
  • 38
1
vote
1 answer

UIPicker in inappsettingskit

Using inappsettingskit, I'm searching for a way to display an uipickerview (with custom values) when clicking on a textfield cell (instead of a keyboard). Is there any way to do so ? Thanks for your help :)
pierrefevrier
  • 1,570
  • 4
  • 22
  • 33
1
vote
1 answer

How to change header section text color in InAppSettingsKit class?

I'm using InAppSettingsKit for my app but I'm having problems changing the text color of my section headers in my grouped tableview. I've tried using the following code but it doesn't work: -(UIView *)tableView:(UITableView *)tableView…
0SX
  • 1,252
  • 6
  • 24
  • 47
1
vote
1 answer

How do I create my own store by subclassing of IASKAbstractSettingsStore?

First off, InAppSettingsKit is just what I was looking for. Once I figure out some things it will save me tons of time. My question is: how do I create my own store by subclassing IASKAbstractSettingsStore? The home of IASK states: The default…
Matt Miller
  • 1,421
  • 1
  • 15
  • 24
1
vote
2 answers

(iphone) InAppSettings/InAppSettingsKit library questions

It seems there are many advocates of InAppSettings https://bitbucket.org/keegan3d/inappsettings/wiki/Home In my app, I need to have multiple different settings page from different views. (Conceptually there are multiple apps within the app, and each…
eugene
  • 39,839
  • 68
  • 255
  • 489
1
vote
2 answers

Connect IASKAppSettingsView to tabbar item

For a iPhone app I'm working on I want to use InAppSettingsKit to handle all the settings from within the app: http://www.inappsettingskit.com/ The sample app runs without problems but I'm not sure how to use it in my own app. There seems to be not…
Bart
  • 134
  • 2
  • 11
1
vote
1 answer

Cannot build InAppSettingsKitSampleApp

I just downloaded and unpacked the ZIP for InAppSettingsKit. For all three versions of the sample app, I am having problems when trying to build and run in Xcode 10.0: IASKSampleAppStaticLibrary.xcodeproj: fatal error:…
Jekapa
  • 169
  • 15
1
vote
1 answer

Call my own cellForRowAtIndexPath for PSMultiValueSpecifier cell

Using InAppSettingsKit (2.8 branch), how should I implement my own cellForRowAtIndexPath for that kind of setting's type (PSMultiValueSpecifier) ? DefaultValue 0 Key
FLK
  • 98
  • 2
  • 8
1
vote
1 answer

InAppSettingsKit with multiple plists

I am looking for a pretty advanced settings framework for iOS. First, I would like to use custom editors for some settings (user can select colors). If I read correctly, this is feasible with IASK. I have not found a answer though for my second…
jmc34
  • 810
  • 3
  • 10
  • 22
1
vote
1 answer

InAppSettingsKit Strange cell content allignment after iOS9 update

I use InAppSettingsKit in my projects. And everything was good befor iOS 9 update. I hadn't this problem in iOS 8. It still work but now cell alignment looks strange. Now cell content has strange offset from the left and right sides. I've downloaded…
Nuzhdin Vladimir
  • 1,714
  • 18
  • 36