I added an "Settings.Bundle" and the InAppSettingsKit to my app which works half fine ;-) My problem: I added an MultiValue list to the Root.plist and if I push the button to go to this list I allways "fall back" to the MainView of my app.
This is what should happen: MainView -> SettingsView -> "next View inside the Settings (MultiValue e.g.)" -> "MultiValue TableView".
This is what happens: MainView -> SettingsView ->"next view inside the Settings" -> MainView
This happens only if I call the settings out of my app. If I go through "Settings->MyApp" everything is fine.
If I call the SettingsView with "setModalTransitionStyle:UIModalTransitionStylePartialCurl" and then push a button to go to an Multivalue list, I only see a black background und the up curled MainView and can not go back anymore.
Someone any idea where the missing part in my code could be !?
[self.appSettingsViewController setModalTransitionStyle:UIModalTransitionStylePartialCurl];
UINavigationController *aNavController = [[UINavigationController alloc] initWithRootViewController:self.appSettingsViewController];
appSettingsViewController.showDoneButton = YES;
[self presentModalViewController:aNavController animated:YES];