Settings bundle not showing up in iPhone settings

IosIphoneIpadSettings Bundle

Ios Problem Overview


I am trying to add a Settings bundle in my iPad app, but it randomly shows up in the iPad settings menu.

When I run in Debug mode (Device or Simulator) it doesn't show up. When I build in Distribution mode and then deploy the app on the iPad A it shows up but doesn't on iPad B (I have several iPads to test).

I am sure the Root.plist is correct as it works sometimes and sometimes not. I also tried with the default plist created when you add a Settings bundle.

Is there something I forgot to do apart from adding the Settings.bundle in the project?

Thanks in advance.

Ios Solutions


Solution 1 - Ios

iOS Settings App Bug Workaround

If all of the other answers don't work for you, try using the App Switch UI (double-press Home button, or swipe up from bottom bezel) to kill the Settings App.

After everything else didn't work, this fixed the issue for me.

App Store Installs & Older iOS Versions

While I have not tested the hypothesis, I suspect, based on all of the other answers, that this has been an issue for several versions of iOS.

Rather, I think it has everything to do with how the App is installed. Apps installed via the App Store do not appear to exhibit this behavior while Apps installed via Xcode or similar side-loading mechanisms appear to never notify the Settings App that there is a new Settings.bundle available.

Launching the Settings App from scratch always seems to work, however.

Solution 2 - Ios

I've had this problem a few times now.

On the simulator; do a 'Reset Content and Settings', clean, and redeploy.

On the device; delete the app, clean, and redeploy.

EDIT: It's also important to make sure that your settings bundle has been added to the current target. That oversight can be very difficult to debug.

Solution 3 - Ios

While you are adding setting bundle please do not rename it. It should be "Settings.bundle" only. Do not alter it.

Solution 4 - Ios

What you are going to want to try is to Delete the application off of your iPad devices, and open the simulator and go up to the top menu and click the button "Reset Content and Settings". Then reinstall your application to your devices and the simulator and it should all be working now.

Solution 5 - Ios

I noticed the same problem on the Simulator. At the first launch of Settings.app, the pane wasn't there, at subsequent launches it was. It the problem intermittent for subsequent launches of Settings.app? Is the problem dependent on the locale of the device?

Solution 6 - Ios

> I am trying to add a Settings bundle in my iPad app, but it randomly shows up in the iPad settings menu.

One way this can happen is if you reinstall the application on the device while the Settings app is running. For example, the Settings app will display your app's settings content the first time you run it from Xcode, but then it disappears the second time, for not obvious reason.

The easy solution is to kill the Settings app and launch it again, and you'll see your app's settings right there were you expect them.

Solution 7 - Ios

I have a feeling that this isn't the exact same issue that you're experiencing, but I found that the adding a Settings.bundle to an existing project required a relaunch of the Simulator before the Settings app picked up on my app's bundle. Restart the Simulator, not just the app within the Simulator.

Not sure about the actual devices, but I wonder if there's a similar rule there?

Solution 8 - Ios

Old question, new answer--hopefully it helps.

My settings were no longer showing. I deleted my settings and then recreated them by hand and then diffed them. I found that I was missing

<key>StringsTable</key>
<string>Root</string>

near the top of my Root.plist file.

Maybe it's a new wrinkle with iOS9.

Solution 9 - Ios

Sometimes, there is an error in your settings, but XCode doesn't do a great job of warning you of this, it will just not deploy the (updated) bundle. I had this when adding a new Multi Value. I had forgotten to add the "Values" section. No errors, app will build onto the device, but the Settings will not be updated.

You still want to make sure that you close from the settings app (double tap home, and remove it from the list of resident programs) completely after you rebuild, to ensure the Settings app reads your bundle anew.

Solution 10 - Ios

On iPhone, delete and install app. You have to run the app once to see the settings.

Solution 11 - Ios

I think you should Clean all targets , empty all caches delete the previous build,Quit the simulator and rebuild the code.Im sure this will work.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionFabien WarniezView Question on Stackoverflow
Solution 1 - IosBeltalowdaView Answer on Stackoverflow
Solution 2 - IosBrandonView Answer on Stackoverflow
Solution 3 - IosBhoopiView Answer on Stackoverflow
Solution 4 - Iosmacintosh264View Answer on Stackoverflow
Solution 5 - IosOrtwin GentzView Answer on Stackoverflow
Solution 6 - IosCalebView Answer on Stackoverflow
Solution 7 - IosdrukeppleView Answer on Stackoverflow
Solution 8 - IosbmauterView Answer on Stackoverflow
Solution 9 - IosJon MadisonView Answer on Stackoverflow
Solution 10 - IosVenkat RamView Answer on Stackoverflow
Solution 11 - IosAdityaView Answer on Stackoverflow