# LionSettings **Repository Path**: mobim/LionSettings ## Basic Information - **Project Name**: LionSettings - **Description**: An iOS settings framework, can use Settings.bundle and you own customized any settings bundle file. - **Primary Language**: Objective-C - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2013-08-22 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## LionSettings ### Introduction LionSettings is a iOS app settings compatitable framework based on LlamaSettings project which based on LlamaSettings code.Add some features like: 1)Support use system "Settings.bundles" file in you apps. 2)Also support use your own XxxSettings.bundls. 3)Auto reload settings after system settings changed. 4)Support PSTitleValueSpecifier, PSMultiValueSpecifier, PSSliderSpecifier, PSGroupSpecifier. 5)Support extra customized type, to be continue... ## Example #### use Settings.bundle directly. LionSettingsViewController *lsvc = [[LionSettingsViewController alloc] init] autorelease]; //LionSettingsViewController *lsvc = [[LionSettingsViewController alloc] initWithSettingsBundleName:@"Settings" andPlistName:@"Root"] autorelease]; [self.navigationController pushViewController:lsvc]; #### use you own MySettings.bundle LionSettingsViewController *lsvc = [[[LionSettingsViewController alloc] initWithSettingsBundleName:@"CustomSettings"] autorelease]; //LionSettingsViewController *lsvc = [[[LionSettingsViewController alloc] initWithSettingsBundleName:@"CustomSettings" andPlistName:@"Root"] autorelease]; [self.navigationController pushViewController:lsvc]; ## Special thanks to [LlamaSettings origin project](https://code.google.com/p/llamasettings/) Thanks to yorgle http://umlautllama.com/