My iOS app uses object screen coordinates stored in SQLite file. During development I'm changing coordinates for some objects. To get this reflected on the device I always have to delete app from device. Only then SQLite with changed data is copied over to the device after compilation. No code is changed, only SQLite contents.
- Is there a way to copy only SQLite file to the app on the iPad (without recompile and app deletion)
- Is there a way to tell Xcode to always copy and overwrite SQLite file after compile and deployment?
Janis