iOS Application Configuration File

后端 未结 8 1665
南笙
南笙 2021-01-31 16:13

In a C# application I always used an app.config file to save some data for my application to load when needed (e.g Connection String).

Wha

8条回答
  •  无人共我
    2021-01-31 16:55

    In iOs every App has own sandbox which will be availble for that app only. So If you want that file to be read only access save it to Application Bundle. else save to Application folder.

    you Can not access Application folder directly So If you want to save your file to that folder you have to do it programmatically.

提交回复
热议问题