0

I'm coding an application for iOS. Which approach do you think is better: creating tables (create table foo) and everything at once, or only create the tables when it's necessary (only when the user goes to a certain view that uses that table) ? My prototype is creating tables only when it's needed. I have to decide if I'm doing it right in order to start developing my BETA.

andrefurquin
  • 502
  • 6
  • 17

1 Answers1

1

Unless there is a good reason, create your tables and structure before hand and let the app update those table(s) as needed. Creating tables on the fly is overcomplicating the task.

Jordan
  • 2,992
  • 2
  • 20
  • 29