InAppSettings icon indicating copy to clipboard operation
InAppSettings copied to clipboard

InAppSettings provides a view controller that displays the application's Settings.bundle as it appears in the iPhone settings. Allowing the same preferences in app and in the iPhone settings.

Results 14 InAppSettings issues
Sort by recently updated
recently updated
newest added

By using a table view controller the keyboard is handled automatically which significantly simplifies the class. The settings table was removed and all keyboard notifications removed. Instead it uses the...

It would be really nice to allow customization of all the options that are in `InAppSettingsConstants.h` so that the UI can be customized to fit a certain app's UI scheme....

`InAppSettingsViewController` was being created in the `init` method that won't get called when instantiating through Interface Builder.

If the in app settings controller is visible, if you leave the app and go to the Settings app and change a setting, when you come back to the app...

http://developer.apple.com/library/ios/#documentation/PreferenceSettings/Conceptual/SettingsApplicationSchemaReference/Articles/RadioGroupElement.html#//apple_ref/doc/uid/TP30915196-SW2

The sample app has atrophied with time...

There is currently no way to dismiss the NumberPad keyboard because there is no done button.

Unsure of implementation

When the keyboard pops up, it covers my tab bar. To make it dismissable I have added the following: PSTextFieldSpecifierCell.m In setupCell add: self.textField.delegate = self; self.textField.returnKeyType = UIReturnKeyDone; Beneath...