The problem i am having is if i make changes to the application settings while the application is running in the background the changes aren’t available in my app until it is restarted. Am i missing something or is this way it is?
Thanks very much. Sj
Use
or
in your App delegate to reconfigure your app. The first is sent when your app resumes after being in the background. The second is sent both on resume and after the first time launch.
See the chart in this article for details.