views:

94

answers:

1

Hi all ! I have plist in my App what i liked to do is to download plist from a folder on my website using http://anadress and then replace the plist in the main bundle by the new one i've download. And i have no idea on how to do this.

If someone could help.

thanks

+1  A: 

You cannot replace any files inside your bundle. Your bundle is signed and cannot be modified. You can, however, easily download the file using NSURLDownload and save it to your home directory. You can read it from there.

Rob Napier