I've started a GitHub project with the initial files - I've included some image assets and the Sandwich.swift data file.
https://github.com/davidakoontz/Sandwichs-iOS14-WWDC-Tutorial/
Post
Replies
Boosts
Views
Activity
Searching GitHub... I found this:
GitHub bymarting Sandwiches - https://github.com/bymartin/Sandwiches
Sure would be sweet to have the sandwich images ....
Well - no answer yet...
Here's a version of Sandwich.swift you can copy & paste.
//
// Sandwich.swift
// Sandwich
//
// Created by David on 6/23/20.
// Copyright © 2020 Life Works IQ Consulting. All rights reserved.
//
import Foundation
struct Sandwich {
var id = UUID()
var name: String
var ingredientCount: Int
var isSpicy: Bool = false
var imageName: String { return name }
var thumbnailName: String { return name + "Thumb"}
}
let testData = [
Sandwich(name: "Club", ingredientCount: 4, isSpicy: false),
Sandwich(name: "Pastrami on rye", ingredientCount: 4, isSpicy: true),
Sandwich(name: "French dip", ingredientCount: 3, isSpicy: false),
Sandwich(name: "Banh mi", ingredientCount: 5, isSpicy: true),
Sandwich(name: "Ice cream sandwich", ingredientCount: 2, isSpicy: false),
Sandwich(name: "Croque madame", ingredientCount: 4, isSpicy: false),
Sandwich(name: "Hot dog", ingredientCount: 2, isSpicy: true),
Sandwich(name: "Fluffernutter", ingredientCount: 2, isSpicy: false),
Sandwich(name: "Avocado toast", ingredientCount: 3, isSpicy: true),
Sandwich(name: "Gua bao", ingredientCount: 4, isSpicy: true),
]