I have a custom settings bundle in my application that provide some additional settings options for a user. But i want that options to be available for some particular users only. Is there is any option to allow/enable my custom app settings for some users only(Programmatically) ?
The flow should be like this:
- If the user is a regular user (Who does not meet some conditions) , and if he opens the iPhone settings page, my app's custom settings should not be visible for him.
- If the user is a special user (Who meets my conditions), and if he opens the iPhone settings page, my app's custom settings should be visible for him.
NB : User has the privilege to meet my conditions during the run time of my application. So the conditions may change during the app running time.