inappsettingskit

InAppSettingsKit with multiple plists

妖精的绣舞 提交于 2021-01-29 04:00:15
问题 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 issue. Our app is fairly broad with 3 or 4 different "areas" and we would like to have settings on an "area" basis. This is definitely not possible with standard settings but is it possible with IASK? This could be either thru different plist or

(iphone) InAppSettings/InAppSettingsKit library questions

本小妞迷上赌 提交于 2020-01-24 22:24:21
问题 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 app needs its own setting page) I thought maybe there will be some easy way to create settings page without IB or enourmous coding, and surely found InAppSettings and InAppSettingsKit( http://inappsettingskit.com/) I have 2 concerns before digging

Child menus aren't showing up in InAppSettingsKit

六月ゝ 毕业季﹏ 提交于 2019-12-13 03:23:35
问题 I've implemented a view that is using an InAppSettingsKit controller, just like the example application shows, but for some reason, I can never access a child screen of any kind. I have even tried adding a multi-select, but when I click on it from the application, it just shows the item as selected, but never takes me to the screen to select an option. When I load the iOS settings application, everything works. Could I be missing something simple and obvious here? 回答1: Ok, so I actually got

Can I use InAppSettings with core data instead of plist?

狂风中的少年 提交于 2019-12-11 23:48:17
问题 Could I use InAppSettings as a means to add/edit settings with the tableview style (rounded edges etc), but then once collected use the collected data to persist to/from my core data store? That is, assuming I already have the core data core in place I would be using InAppSettings as a means to implement the data collection screens essentially. Is this possible / make sense for InAppSettings? Another way of looking at the question is whether it is worth trying to integrate InAppSettings into

InAppSettingsKit - set a button to have a disclosure icon?

扶醉桌前 提交于 2019-12-11 23:28:33
问题 Is there a way to set a button to have a disclosure icon, similar to the child pane specifier? 回答1: Not out of the box if you're using IASKButtonSpecifier . Your options are: A) implement -tableView:cellForSpecifier: in your delegate and customize the returned cell. You first call super, then set the accessoryType of the cell to UITableViewCellAccessoryDisclosureIndicator . B) use PSChildPaneSpecifier combined with a custom view controller. 来源: https://stackoverflow.com/questions/18211157

how to have 2 different setting page with inappSettings

﹥>﹥吖頭↗ 提交于 2019-12-11 06:16:38
问题 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 ? 回答1: Why dont you create two different views in your setting page and use the view which ever is required. 来源: https://stackoverflow.com/questions/8162471/how-to-have-2-different-setting-page-with-inappsettings

Connect IASKAppSettingsView to tabbar item

不问归期 提交于 2019-12-11 05:36:37
问题 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 documentation. I have a tabbar item called settings that should display the InAppSettingsKit. When I set the NIB name of the tabbar item to "IASKAppSettingsView" I only get errors. I've looked at the sample code but I can't find out how they

Dynamic In-App Settings

最后都变了- 提交于 2019-12-10 15:33:38
问题 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 list on my server as far as I know. I want to update the location list from a dynamic list on the server. I have looked at InAppSettingsKit but this also uses the standard settings bundles. Is it possible to use InAppSettingsKit to import settings

Having problems reading settings while using InAppSettingsKit

橙三吉。 提交于 2019-12-09 13:34:55
问题 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 on the simulator I can see the changes reflected. However, for the life of me, I cannot access the settings in NSUserDefaults through my code. When I run the code below I can loop through the contents of the [NSUserDefaults standardUserDefaults] .

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

好久不见. 提交于 2019-12-06 08:49:39
问题 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 the sample app and I'm a bit lost with it all. Please could someone help me out? 回答1: After spending a while searching through all the code and plists I managed to find the answer to my question. For those who are interested what you need to do is