I want to add a Settings Bundle to my application.
This settings bundle should contain multiple network location information objects.
A network information object is:
– An IP-address
– An Port Number.
It must be possible to add multiple of these configurations in the settings.
So:
- A user goes to the preferences.
- A user adds a new model and fills in the ip/port.
- A user adds another model.
- The user launches the application.
- The applications shows the models.
I rather do not do this in my application.
Is this possible, and if so, how?
Edit:
An example is the mail app where you can add accounts.
In order to add preferences to the general settings app, you modify a .plist file with specifiers to get the desired effect. After compiling you are not able to modify the contents of the .plist file, as it is part of the application’s bundle. So to answer your question, what you want is not possible in the general settings app. However you can still implement it within your app, using for example a .plist in your documents directory, and presemt that in a tableview.