One key feature of today’s CodeWithChris lesson from iOS Foundations Module 5 is adding a video to the Learning App. In order to do this, we need to add the appropriate Framework to the project: We then add that to the view that will include the video: There is also […]
LearnNewStuff
Today’s lesson follows Chris through setting up the main view, whilst using sub-views for duplicated code. Example: The main struct HomeView calls up the HomeViewRow twice – first to show a “Lessons” card, then to show a “Test” card. This pair of views is then called up ForEach lesson stored […]
Today’s lesson takes advantage of any talent you may have when it comes to keyboard dexterity. It consists mostly of following Chris through setting up the JSON parsing. Keeping up with his keyboard speed requires above average keyboard dexterity, and even I had to hit ‘pause’ more than once for […]
The introduction to iOS Foundations Module 5 from CodeWithChris details the new LearningApp that we’ll be creating. It looks initially similar to the previous RecipeApp with the addition of new navigation screens and user feedback/responses. The section I’m most excited about is retrieving data from remote sources – something I’ve […]
The completed ’Challenge’ app from Module 4 of the iOS Foundations course by CodeWithChris is a book preview app. Naturally, I replaced the general book covers and text with my own (well, who wouldn’t?). The app opens with a scrollable list of book covers, including title and author. The book […]
The Challenge so Far The challenge concludes: Created ‘Ratings’ selection Picker(), Learned about .onAppear, which replaces the default rating with the book’s rating once the book has been selected. The challenge solution uses a new element indices – another one we haven’t encountered before. It’s some kind of challenge when […]
The Challenge so Far Continuing the Book Library wrap-up challenge, trying to get over the latest hurdle: Debugging – trying to figure out why my code that looks okay doesn’t want to show much other than the title. Must be something wrong with the JSON or the decoding. If I […]
The Challenge so Far Continuing the Book Library wrap-up challenge: Create CoverCard view, Install GitHubforWindows on PC, Set-up book preview view, Needed to look back on past lessons to try and remember everything, and the syntax for everything. Not sure too much has actually sunk in… Start setting up initial […]