1

I'm using InAppSettingsKit and my child panes are not showing up. I found a post (Stackoverflow) about using Navigation Controllers, which I am. On the General.plist I have the same view as the Root.plist. I have done some searching and all I can find is that you need to use Navigation Controllers. That is what I am using. Notice the "Done" button and the "\<\Settings" button.

Any ideas or thoughts thank you!!

enter image description here

enter image description here

Community
  • 1
  • 1
Eric
  • 157
  • 1
  • 11
  • Does your Settings.plist work in Settings app? It looks like it doesn't find the child plist. – Ortwin Gentz Nov 04 '13 at 18:06
  • It looks the same in the settings app and the inappsettingskit tableviewcontroller. I have deleted the app from my device as well as the simulator, and then rebuild. Still no luck. – Eric Nov 04 '13 at 19:29
  • 1
    OK, so the problem is in your plists. Did you reference the `Filename` of the child plist in the root plist? When you do so, you should omit the ".plist" suffix. – Ortwin Gentz Nov 04 '13 at 19:45
  • That's it! Removing the .plist extension was the kicker. Working like a charm. Thank you so much Ortwin. iOS 6 uses the extension, I have not found any docs that instruct you to remove extension on iOS 7. Thanks! – Eric Nov 04 '13 at 22:31
  • Great! Have added it as an answer. – Ortwin Gentz Nov 04 '13 at 22:34

1 Answers1

1

Make sure to correctly reference the Filename of the child plist in the root plist. When you do so, you should omit the ".plist" suffix.

Ortwin Gentz
  • 52,648
  • 24
  • 135
  • 213