I’ve been working on a Cook Book App but each view ( or recipie page) takes about 45 minutes to complete so as you can imagine its taking forever.
The problem is that I have to manually:
-
Set up a gradient image for the back ground (Somtimes I have to add a few image backgrounds to fit the view as I often use a scroll view, not sure how this could be automated?)
-
Put an image behind the titles “Recipe name” , “Time needed” and an image to go behind the recipie instructions ( again I might need a few of these depending on how long the description is.
-
Creating view controllers for main sections such as “Breakfast” and “Lunch” and then I need to manually create view controllers to go in these sections.
Theres got to be a way to set up a template for this?
Thanks for reading all of this.
Thanks guys for all this great info, I now understand the process.
The problem is im not sure how to implement this from a coding aspect, is there a good tutorial I could read on this?
Are you creating a different view for EACH recipe? if so that sounds like a lot of work. I would utilize a database, a .plist, or some kind of data source to keep the recipe data. Then I would create template views for the recipes and load the data into each view.
I’m not sure I understand your struggle so I might be stating the obvious.