├── Chapter01 ├── .DS_Store └── Exploring Xcode │ ├── Exploring Xcode │ └── Assets.xcassets │ │ └── Contents.json │ └── .DS_Store ├── Chapter02 └── .DS_Store ├── Chapter05 └── .DS_Store ├── Chapter07 └── .DS_Store ├── Chapter09 ├── Assets.xcassets │ ├── Contents.json │ ├── icons │ │ ├── Contents.json │ │ ├── icon-plus.imageset │ │ │ └── icon-plus.pdf │ │ ├── icon-photo.imageset │ │ │ └── icon-photo.pdf │ │ ├── icon-pin.imageset │ │ │ ├── icon-pin@2x.pdf │ │ │ └── icon-pin@3x.pdf │ │ ├── icon-map-on.imageset │ │ │ └── icon-map-on.pdf │ │ ├── icon-review.imageset │ │ │ └── icon-review.pdf │ │ ├── icon-calendar.imageset │ │ │ └── icon-calendar.pdf │ │ └── icon-map-off.imageset │ │ │ └── icon-map-off.pdf │ ├── misc │ │ ├── Contents.json │ │ ├── arrow.imageset │ │ │ └── arrow.pdf │ │ ├── time-bg.imageset │ │ │ └── time-bg.pdf │ │ ├── logo-nav.imageset │ │ │ └── logo-nav.pdf │ │ ├── half-star.imageset │ │ │ └── half-star.pdf │ │ ├── btn-review.imageset │ │ │ └── btn-review.pdf │ │ ├── detail-logo.imageset │ │ │ └── detail-logo.pdf │ │ ├── down-arrow.imageset │ │ │ └── down-arrow.pdf │ │ ├── empty-star.imageset │ │ │ └── empty-star.pdf │ │ ├── filled-star.imageset │ │ │ └── filled-star.pdf │ │ ├── photo-thumb.imageset │ │ │ └── photo-thumb.pdf │ │ ├── btn-location.imageset │ │ │ └── btn-location.pdf │ │ ├── filter-default.imageset │ │ │ └── filter-default.pdf │ │ └── heart-selected.imageset │ │ │ └── heart-selected.pdf │ ├── stars │ │ ├── Contents.json │ │ ├── 0star.imageset │ │ │ └── 0star.pdf │ │ ├── 1star.imageset │ │ │ └── 1star.pdf │ │ ├── 2star.imageset │ │ │ └── 2star.pdf │ │ ├── 3star.imageset │ │ │ └── 3star.pdf │ │ ├── 4star.imageset │ │ │ └── 4star.pdf │ │ ├── 5star.imageset │ │ │ └── 5star.pdf │ │ ├── 05star.imageset │ │ │ └── 05star.pdf │ │ ├── 15star.imageset │ │ │ └── 15star.pdf │ │ ├── 25star.imageset │ │ │ └── 25star.pdf │ │ ├── 35star.imageset │ │ │ └── 35star.pdf │ │ └── 45star.imageset │ │ │ └── 45star.pdf │ ├── explore images │ │ ├── Contents.json │ │ ├── all.imageset │ │ │ ├── all.png │ │ │ ├── all@2x.png │ │ │ └── all@3x.png │ │ ├── bar.imageset │ │ │ ├── bar.png │ │ │ ├── bar@2x.png │ │ │ └── bar@3x.png │ │ ├── wine.imageset │ │ │ ├── wine.png │ │ │ ├── wine@2x.png │ │ │ └── wine@3x.png │ │ ├── bistro.imageset │ │ │ ├── bistro.png │ │ │ ├── bistro@2x.png │ │ │ └── bistro@3x.png │ │ ├── cuban.imageset │ │ │ ├── cuban.png │ │ │ ├── cuban@2x.png │ │ │ └── cuban@3x.png │ │ ├── french.imageset │ │ │ ├── french.png │ │ │ ├── french@2x.png │ │ │ └── french@3x.png │ │ ├── latin.imageset │ │ │ ├── latin.png │ │ │ ├── latin@2x.png │ │ │ └── latin@3x.png │ │ ├── pizza.imageset │ │ │ ├── pizza.png │ │ │ ├── pizza@2x.png │ │ │ └── pizza@3x.png │ │ ├── steak.imageset │ │ │ ├── steak.png │ │ │ ├── steak@2x.png │ │ │ └── steak@3x.png │ │ ├── sushi.imageset │ │ │ ├── sushi.png │ │ │ ├── sushi@2x.png │ │ │ └── sushi@3x.png │ │ ├── tapas.imageset │ │ │ ├── tapas.png │ │ │ ├── tapas@2x.png │ │ │ └── tapas@3x.png │ │ ├── brewery.imageset │ │ │ ├── brewery.png │ │ │ ├── brewery@2x.png │ │ │ └── brewery@3x.png │ │ ├── burgers.imageset │ │ │ ├── burgers.png │ │ │ ├── burgers@2x.png │ │ │ └── burgers@3x.png │ │ ├── comfort.imageset │ │ │ ├── comfort.png │ │ │ ├── comfort@2x.png │ │ │ └── comfort@3x.png │ │ ├── italian.imageset │ │ │ ├── italian.png │ │ │ ├── italian@2x.png │ │ │ └── italian@3x.png │ │ ├── mexican.imageset │ │ │ ├── mexican.png │ │ │ ├── mexican@2x.png │ │ │ └── mexican@3x.png │ │ ├── organic.imageset │ │ │ ├── organic.png │ │ │ ├── organic@2x.png │ │ │ └── organic@3x.png │ │ ├── seafood.imageset │ │ │ ├── seafood.png │ │ │ ├── seafood@2x.png │ │ │ └── seafood@3x.png │ │ ├── spanish.imageset │ │ │ ├── spanish.png │ │ │ ├── spanish@2x.png │ │ │ └── spanish@3x.png │ │ ├── american.imageset │ │ │ ├── american.png │ │ │ ├── american@2x.png │ │ │ └── american@3x.png │ │ ├── japanese.imageset │ │ │ ├── japanese.png │ │ │ ├── japanese@2x.png │ │ │ └── japanese@3x.png │ │ ├── panasian.imageset │ │ │ ├── panasian.png │ │ │ ├── panasian@2x.png │ │ │ └── panasian@3x.png │ │ ├── peruvian.imageset │ │ │ ├── peruvian.png │ │ │ ├── peruvian@2x.png │ │ │ └── peruvian@3x.png │ │ ├── primerib.imageset │ │ │ ├── primerib.png │ │ │ ├── primerib@2x.png │ │ │ └── primerib@3x.png │ │ ├── southern.imageset │ │ │ ├── southern.png │ │ │ ├── southern@2x.png │ │ │ └── southern@3x.png │ │ └── caribbean.imageset │ │ │ └── caribbean.png │ ├── shortcut icons │ │ └── Contents.json │ └── AppIcon.appiconset │ │ ├── Icon1024.png │ │ ├── Icon120.png │ │ ├── Icon152.png │ │ ├── Icon20.png │ │ ├── Icon29.png │ │ ├── Icon40.png │ │ ├── Icon76.png │ │ ├── Icon83.png │ │ ├── Icon87.png │ │ ├── Icon20@2x.png │ │ ├── Icon20@3x.png │ │ ├── Icon40@2x.png │ │ ├── Icon40@3x.png │ │ ├── Icon60@3x.png │ │ ├── Icon20@2x-1.png │ │ ├── Icon29@2x-1.png │ │ ├── Icon29@2x-2.png │ │ └── Icon40@2x-1.png └── LetsEat │ ├── .DS_Store │ └── LetsEat │ └── Assets.xcassets │ ├── Contents.json │ ├── icons │ └── Contents.json │ ├── misc │ ├── Contents.json │ └── arrow.imageset │ │ └── arrow.pdf │ ├── stars │ ├── Contents.json │ ├── 0star.imageset │ │ └── 0star.pdf │ ├── 1star.imageset │ │ └── 1star.pdf │ ├── 2star.imageset │ │ └── 2star.pdf │ ├── 3star.imageset │ │ └── 3star.pdf │ ├── 4star.imageset │ │ └── 4star.pdf │ ├── 5star.imageset │ │ └── 5star.pdf │ ├── 05star.imageset │ │ └── 05star.pdf │ ├── 15star.imageset │ │ └── 15star.pdf │ ├── 25star.imageset │ │ └── 25star.pdf │ ├── 35star.imageset │ │ └── 35star.pdf │ └── 45star.imageset │ │ └── 45star.pdf │ ├── explore images │ └── Contents.json │ ├── shortcut icons │ └── Contents.json │ └── AppIcon.appiconset │ ├── Icon120.png │ ├── Icon152.png │ ├── Icon20.png │ ├── Icon29.png │ ├── Icon40.png │ ├── Icon76.png │ ├── Icon83.png │ ├── Icon87.png │ ├── Icon1024.png │ ├── Icon20@2x.png │ ├── Icon20@3x.png │ ├── Icon40@2x.png │ ├── Icon40@3x.png │ └── Icon60@3x.png ├── Chapter10 └── LetsEat │ ├── .DS_Store │ └── LetsEat │ └── Assets.xcassets │ ├── Contents.json │ ├── icons │ └── Contents.json │ ├── misc │ ├── Contents.json │ └── arrow.imageset │ │ └── arrow.pdf │ ├── stars │ ├── Contents.json │ ├── 0star.imageset │ │ └── 0star.pdf │ ├── 1star.imageset │ │ └── 1star.pdf │ ├── 2star.imageset │ │ └── 2star.pdf │ ├── 3star.imageset │ │ └── 3star.pdf │ ├── 4star.imageset │ │ └── 4star.pdf │ ├── 5star.imageset │ │ └── 5star.pdf │ ├── 05star.imageset │ │ └── 05star.pdf │ ├── 15star.imageset │ │ └── 15star.pdf │ ├── 25star.imageset │ │ └── 25star.pdf │ ├── 35star.imageset │ │ └── 35star.pdf │ └── 45star.imageset │ │ └── 45star.pdf │ ├── colors │ └── Contents.json │ ├── explore images │ └── Contents.json │ ├── shortcut icons │ └── Contents.json │ └── AppIcon.appiconset │ ├── Icon120.png │ ├── Icon152.png │ ├── Icon20.png │ ├── Icon29.png │ ├── Icon40.png │ ├── Icon76.png │ ├── Icon83.png │ ├── Icon87.png │ ├── Icon1024.png │ ├── Icon20@2x.png │ ├── Icon20@3x.png │ ├── Icon40@2x.png │ ├── Icon40@3x.png │ └── Icon60@3x.png ├── Chapter11 └── LetsEat │ ├── .DS_Store │ └── LetsEat │ └── Assets.xcassets │ ├── Contents.json │ ├── icons │ └── Contents.json │ ├── misc │ ├── Contents.json │ └── arrow.imageset │ │ └── arrow.pdf │ ├── stars │ ├── Contents.json │ ├── 0star.imageset │ │ └── 0star.pdf │ ├── 1star.imageset │ │ └── 1star.pdf │ ├── 2star.imageset │ │ └── 2star.pdf │ ├── 3star.imageset │ │ └── 3star.pdf │ ├── 4star.imageset │ │ └── 4star.pdf │ ├── 5star.imageset │ │ └── 5star.pdf │ ├── 05star.imageset │ │ └── 05star.pdf │ ├── 15star.imageset │ │ └── 15star.pdf │ ├── 25star.imageset │ │ └── 25star.pdf │ ├── 35star.imageset │ │ └── 35star.pdf │ └── 45star.imageset │ │ └── 45star.pdf │ ├── colors │ └── Contents.json │ ├── explore images │ └── Contents.json │ ├── shortcut icons │ └── Contents.json │ └── AppIcon.appiconset │ ├── Icon120.png │ ├── Icon152.png │ ├── Icon20.png │ ├── Icon29.png │ ├── Icon40.png │ ├── Icon76.png │ ├── Icon83.png │ ├── Icon87.png │ ├── Icon1024.png │ ├── Icon20@2x.png │ ├── Icon20@3x.png │ ├── Icon40@2x.png │ ├── Icon40@3x.png │ └── Icon60@3x.png ├── Chapter12 └── LetsEat │ ├── .DS_Store │ └── LetsEat │ └── Assets.xcassets │ ├── Contents.json │ ├── icons │ └── Contents.json │ ├── misc │ ├── Contents.json │ └── arrow.imageset │ │ └── arrow.pdf │ ├── stars │ ├── Contents.json │ ├── 0star.imageset │ │ └── 0star.pdf │ ├── 1star.imageset │ │ └── 1star.pdf │ ├── 2star.imageset │ │ └── 2star.pdf │ ├── 3star.imageset │ │ └── 3star.pdf │ ├── 4star.imageset │ │ └── 4star.pdf │ ├── 5star.imageset │ │ └── 5star.pdf │ ├── 05star.imageset │ │ └── 05star.pdf │ ├── 15star.imageset │ │ └── 15star.pdf │ ├── 25star.imageset │ │ └── 25star.pdf │ ├── 35star.imageset │ │ └── 35star.pdf │ └── 45star.imageset │ │ └── 45star.pdf │ ├── colors │ └── Contents.json │ ├── explore images │ └── Contents.json │ ├── shortcut icons │ └── Contents.json │ └── AppIcon.appiconset │ ├── Icon120.png │ ├── Icon152.png │ ├── Icon20.png │ ├── Icon29.png │ ├── Icon40.png │ ├── Icon76.png │ ├── Icon83.png │ ├── Icon87.png │ ├── Icon1024.png │ ├── Icon20@2x.png │ ├── Icon20@3x.png │ ├── Icon40@2x.png │ ├── Icon40@3x.png │ └── Icon60@3x.png ├── Chapter13 └── LetsEat │ ├── .DS_Store │ └── LetsEat │ └── Assets.xcassets │ ├── Contents.json │ ├── icons │ └── Contents.json │ ├── misc │ ├── Contents.json │ └── arrow.imageset │ │ └── arrow.pdf │ ├── stars │ ├── Contents.json │ ├── 0star.imageset │ │ └── 0star.pdf │ ├── 1star.imageset │ │ └── 1star.pdf │ ├── 2star.imageset │ │ └── 2star.pdf │ ├── 3star.imageset │ │ └── 3star.pdf │ ├── 4star.imageset │ │ └── 4star.pdf │ ├── 5star.imageset │ │ └── 5star.pdf │ ├── 05star.imageset │ │ └── 05star.pdf │ ├── 15star.imageset │ │ └── 15star.pdf │ ├── 25star.imageset │ │ └── 25star.pdf │ ├── 35star.imageset │ │ └── 35star.pdf │ └── 45star.imageset │ │ └── 45star.pdf │ ├── colors │ └── Contents.json │ ├── explore images │ └── Contents.json │ ├── shortcut icons │ └── Contents.json │ └── AppIcon.appiconset │ ├── Icon120.png │ ├── Icon152.png │ ├── Icon20.png │ ├── Icon29.png │ ├── Icon40.png │ ├── Icon76.png │ ├── Icon83.png │ ├── Icon87.png │ ├── Icon1024.png │ ├── Icon20@2x.png │ ├── Icon20@3x.png │ ├── Icon40@2x.png │ ├── Icon40@3x.png │ └── Icon60@3x.png ├── Chapter14 └── LetsEat │ ├── .DS_Store │ └── LetsEat │ └── Assets.xcassets │ ├── Contents.json │ ├── icons │ └── Contents.json │ ├── misc │ ├── Contents.json │ └── arrow.imageset │ │ └── arrow.pdf │ ├── stars │ ├── Contents.json │ ├── 0star.imageset │ │ └── 0star.pdf │ ├── 1star.imageset │ │ └── 1star.pdf │ ├── 2star.imageset │ │ └── 2star.pdf │ ├── 3star.imageset │ │ └── 3star.pdf │ ├── 4star.imageset │ │ └── 4star.pdf │ ├── 5star.imageset │ │ └── 5star.pdf │ ├── 05star.imageset │ │ └── 05star.pdf │ ├── 15star.imageset │ │ └── 15star.pdf │ ├── 25star.imageset │ │ └── 25star.pdf │ ├── 35star.imageset │ │ └── 35star.pdf │ └── 45star.imageset │ │ └── 45star.pdf │ ├── colors │ └── Contents.json │ ├── explore images │ └── Contents.json │ ├── shortcut icons │ └── Contents.json │ └── AppIcon.appiconset │ ├── Icon120.png │ ├── Icon152.png │ ├── Icon20.png │ ├── Icon29.png │ ├── Icon40.png │ ├── Icon76.png │ ├── Icon83.png │ ├── Icon87.png │ ├── Icon1024.png │ ├── Icon20@2x.png │ ├── Icon20@3x.png │ ├── Icon40@2x.png │ ├── Icon40@3x.png │ └── Icon60@3x.png ├── Chapter15 └── LetsEat │ ├── .DS_Store │ └── LetsEat │ └── Assets.xcassets │ ├── Contents.json │ ├── icons │ └── Contents.json │ ├── misc │ ├── Contents.json │ └── arrow.imageset │ │ └── arrow.pdf │ ├── stars │ ├── Contents.json │ ├── 0star.imageset │ │ └── 0star.pdf │ ├── 1star.imageset │ │ └── 1star.pdf │ ├── 2star.imageset │ │ └── 2star.pdf │ ├── 3star.imageset │ │ └── 3star.pdf │ ├── 4star.imageset │ │ └── 4star.pdf │ ├── 5star.imageset │ │ └── 5star.pdf │ ├── 05star.imageset │ │ └── 05star.pdf │ ├── 15star.imageset │ │ └── 15star.pdf │ ├── 25star.imageset │ │ └── 25star.pdf │ ├── 35star.imageset │ │ └── 35star.pdf │ └── 45star.imageset │ │ └── 45star.pdf │ ├── colors │ └── Contents.json │ ├── explore images │ └── Contents.json │ ├── shortcut icons │ └── Contents.json │ └── AppIcon.appiconset │ ├── Icon120.png │ ├── Icon152.png │ ├── Icon20.png │ ├── Icon29.png │ ├── Icon40.png │ ├── Icon76.png │ ├── Icon83.png │ ├── Icon87.png │ ├── Icon1024.png │ ├── Icon20@2x.png │ ├── Icon20@3x.png │ ├── Icon40@2x.png │ ├── Icon40@3x.png │ └── Icon60@3x.png ├── Chapter16 └── LetsEat │ ├── .DS_Store │ └── LetsEat │ └── Assets.xcassets │ ├── Contents.json │ ├── icons │ └── Contents.json │ ├── misc │ ├── Contents.json │ └── arrow.imageset │ │ └── arrow.pdf │ ├── stars │ ├── Contents.json │ ├── 0star.imageset │ │ └── 0star.pdf │ ├── 1star.imageset │ │ └── 1star.pdf │ ├── 2star.imageset │ │ └── 2star.pdf │ ├── 3star.imageset │ │ └── 3star.pdf │ ├── 4star.imageset │ │ └── 4star.pdf │ ├── 5star.imageset │ │ └── 5star.pdf │ ├── 05star.imageset │ │ └── 05star.pdf │ ├── 15star.imageset │ │ └── 15star.pdf │ ├── 25star.imageset │ │ └── 25star.pdf │ ├── 35star.imageset │ │ └── 35star.pdf │ └── 45star.imageset │ │ └── 45star.pdf │ ├── colors │ └── Contents.json │ ├── explore images │ └── Contents.json │ ├── shortcut icons │ └── Contents.json │ └── AppIcon.appiconset │ ├── Icon120.png │ ├── Icon152.png │ ├── Icon20.png │ ├── Icon29.png │ ├── Icon40.png │ ├── Icon76.png │ ├── Icon83.png │ ├── Icon87.png │ ├── Icon1024.png │ ├── Icon20@2x.png │ ├── Icon20@3x.png │ ├── Icon40@2x.png │ ├── Icon40@3x.png │ └── Icon60@3x.png ├── Chapter17 └── LetsEat │ ├── .DS_Store │ └── LetsEat │ └── Assets.xcassets │ ├── Contents.json │ ├── icons │ └── Contents.json │ ├── misc │ ├── Contents.json │ └── arrow.imageset │ │ └── arrow.pdf │ ├── stars │ ├── Contents.json │ ├── 0star.imageset │ │ └── 0star.pdf │ ├── 1star.imageset │ │ └── 1star.pdf │ ├── 2star.imageset │ │ └── 2star.pdf │ ├── 3star.imageset │ │ └── 3star.pdf │ ├── 4star.imageset │ │ └── 4star.pdf │ ├── 5star.imageset │ │ └── 5star.pdf │ ├── 05star.imageset │ │ └── 05star.pdf │ ├── 15star.imageset │ │ └── 15star.pdf │ ├── 25star.imageset │ │ └── 25star.pdf │ ├── 35star.imageset │ │ └── 35star.pdf │ └── 45star.imageset │ │ └── 45star.pdf │ ├── colors │ └── Contents.json │ ├── explore images │ └── Contents.json │ ├── shortcut icons │ └── Contents.json │ └── AppIcon.appiconset │ ├── Icon120.png │ ├── Icon152.png │ ├── Icon20.png │ ├── Icon29.png │ ├── Icon40.png │ ├── Icon76.png │ ├── Icon83.png │ ├── Icon87.png │ ├── Icon1024.png │ ├── Icon20@2x.png │ ├── Icon20@3x.png │ ├── Icon40@2x.png │ ├── Icon40@3x.png │ └── Icon60@3x.png ├── Chapter18 └── LetsEat │ ├── .DS_Store │ └── LetsEat │ └── Assets.xcassets │ ├── Contents.json │ ├── icons │ └── Contents.json │ ├── misc │ ├── Contents.json │ └── arrow.imageset │ │ └── arrow.pdf │ ├── stars │ ├── Contents.json │ ├── 0star.imageset │ │ └── 0star.pdf │ ├── 1star.imageset │ │ └── 1star.pdf │ ├── 2star.imageset │ │ └── 2star.pdf │ ├── 3star.imageset │ │ └── 3star.pdf │ ├── 4star.imageset │ │ └── 4star.pdf │ ├── 5star.imageset │ │ └── 5star.pdf │ ├── 05star.imageset │ │ └── 05star.pdf │ ├── 15star.imageset │ │ └── 15star.pdf │ ├── 25star.imageset │ │ └── 25star.pdf │ ├── 35star.imageset │ │ └── 35star.pdf │ └── 45star.imageset │ │ └── 45star.pdf │ ├── colors │ └── Contents.json │ ├── explore images │ └── Contents.json │ ├── shortcut icons │ └── Contents.json │ └── AppIcon.appiconset │ ├── Icon120.png │ ├── Icon152.png │ ├── Icon20.png │ ├── Icon29.png │ ├── Icon40.png │ ├── Icon76.png │ ├── Icon83.png │ ├── Icon87.png │ ├── Icon1024.png │ ├── Icon20@2x.png │ ├── Icon20@3x.png │ ├── Icon40@2x.png │ ├── Icon40@3x.png │ └── Icon60@3x.png ├── Chapter19 └── LetsEat │ ├── .DS_Store │ └── LetsEat │ └── Assets.xcassets │ ├── Contents.json │ ├── icons │ └── Contents.json │ ├── misc │ ├── Contents.json │ └── arrow.imageset │ │ └── arrow.pdf │ ├── stars │ ├── Contents.json │ ├── 0star.imageset │ │ └── 0star.pdf │ ├── 1star.imageset │ │ └── 1star.pdf │ ├── 2star.imageset │ │ └── 2star.pdf │ ├── 3star.imageset │ │ └── 3star.pdf │ ├── 4star.imageset │ │ └── 4star.pdf │ ├── 5star.imageset │ │ └── 5star.pdf │ ├── 05star.imageset │ │ └── 05star.pdf │ ├── 15star.imageset │ │ └── 15star.pdf │ ├── 25star.imageset │ │ └── 25star.pdf │ ├── 35star.imageset │ │ └── 35star.pdf │ └── 45star.imageset │ │ └── 45star.pdf │ ├── colors │ └── Contents.json │ ├── explore images │ └── Contents.json │ ├── shortcut icons │ └── Contents.json │ └── AppIcon.appiconset │ ├── Icon120.png │ ├── Icon152.png │ ├── Icon20.png │ ├── Icon29.png │ ├── Icon40.png │ ├── Icon76.png │ ├── Icon83.png │ ├── Icon87.png │ ├── Icon1024.png │ ├── Icon20@2x.png │ ├── Icon20@3x.png │ ├── Icon40@2x.png │ ├── Icon40@3x.png │ └── Icon60@3x.png ├── Chapter20 └── LetsEat │ ├── .DS_Store │ └── LetsEat │ └── Assets.xcassets │ ├── Contents.json │ ├── icons │ └── Contents.json │ ├── misc │ ├── Contents.json │ └── arrow.imageset │ │ └── arrow.pdf │ ├── stars │ ├── Contents.json │ ├── 0star.imageset │ │ └── 0star.pdf │ ├── 1star.imageset │ │ └── 1star.pdf │ ├── 2star.imageset │ │ └── 2star.pdf │ ├── 3star.imageset │ │ └── 3star.pdf │ ├── 4star.imageset │ │ └── 4star.pdf │ └── 5star.imageset │ │ └── 5star.pdf │ ├── colors │ └── Contents.json │ ├── explore images │ └── Contents.json │ ├── shortcut icons │ └── Contents.json │ └── AppIcon.appiconset │ ├── Icon120.png │ ├── Icon152.png │ ├── Icon20.png │ ├── Icon29.png │ ├── Icon40.png │ ├── Icon76.png │ ├── Icon83.png │ ├── Icon87.png │ ├── Icon1024.png │ ├── Icon20@2x.png │ ├── Icon20@3x.png │ ├── Icon40@2x.png │ └── Icon40@3x.png ├── Chapter21 └── LetsEat │ ├── .DS_Store │ └── LetsEat │ └── Assets.xcassets │ ├── Contents.json │ ├── icons │ └── Contents.json │ ├── misc │ ├── Contents.json │ └── arrow.imageset │ │ └── arrow.pdf │ ├── stars │ ├── Contents.json │ ├── 0star.imageset │ │ └── 0star.pdf │ ├── 1star.imageset │ │ └── 1star.pdf │ ├── 2star.imageset │ │ └── 2star.pdf │ ├── 3star.imageset │ │ └── 3star.pdf │ ├── 4star.imageset │ │ └── 4star.pdf │ └── 5star.imageset │ │ └── 5star.pdf │ ├── colors │ └── Contents.json │ ├── explore images │ └── Contents.json │ ├── shortcut icons │ └── Contents.json │ └── AppIcon.appiconset │ ├── Icon120.png │ ├── Icon152.png │ ├── Icon20.png │ ├── Icon29.png │ ├── Icon40.png │ ├── Icon76.png │ ├── Icon83.png │ └── Icon87.png ├── Chapter22 └── LetsEat │ ├── .DS_Store │ └── LetsEat │ └── Assets.xcassets │ ├── Contents.json │ ├── icons │ └── Contents.json │ ├── misc │ ├── Contents.json │ └── arrow.imageset │ │ └── arrow.pdf │ ├── stars │ ├── Contents.json │ ├── 0star.imageset │ │ └── 0star.pdf │ ├── 1star.imageset │ │ └── 1star.pdf │ ├── 2star.imageset │ │ └── 2star.pdf │ ├── 3star.imageset │ │ └── 3star.pdf │ ├── 4star.imageset │ │ └── 4star.pdf │ └── 5star.imageset │ │ └── 5star.pdf │ ├── colors │ └── Contents.json │ ├── explore images │ └── Contents.json │ ├── shortcut icons │ └── Contents.json │ └── AppIcon.appiconset │ ├── Icon120.png │ ├── Icon152.png │ ├── Icon20.png │ ├── Icon29.png │ ├── Icon40.png │ ├── Icon76.png │ ├── Icon83.png │ └── Icon87.png ├── Chapter23 └── LetsEat │ ├── .DS_Store │ └── LetsEat │ └── Assets.xcassets │ ├── Contents.json │ ├── icons │ └── Contents.json │ ├── misc │ ├── Contents.json │ └── arrow.imageset │ │ └── arrow.pdf │ ├── stars │ ├── Contents.json │ ├── 0star.imageset │ │ └── 0star.pdf │ ├── 1star.imageset │ │ └── 1star.pdf │ ├── 2star.imageset │ │ └── 2star.pdf │ ├── 3star.imageset │ │ └── 3star.pdf │ ├── 4star.imageset │ │ └── 4star.pdf │ └── 5star.imageset │ │ └── 5star.pdf │ ├── colors │ └── Contents.json │ ├── explore images │ └── Contents.json │ ├── shortcut icons │ └── Contents.json │ └── AppIcon.appiconset │ ├── Icon120.png │ ├── Icon152.png │ ├── Icon20.png │ ├── Icon29.png │ ├── Icon40.png │ ├── Icon76.png │ ├── Icon83.png │ └── Icon87.png ├── Chapter24 └── LetsEat │ ├── .DS_Store │ └── LetsEat │ └── Assets.xcassets │ ├── Contents.json │ ├── icons │ └── Contents.json │ ├── misc │ ├── Contents.json │ └── arrow.imageset │ │ └── arrow.pdf │ ├── stars │ ├── Contents.json │ ├── 0star.imageset │ │ └── 0star.pdf │ ├── 1star.imageset │ │ └── 1star.pdf │ ├── 2star.imageset │ │ └── 2star.pdf │ ├── 3star.imageset │ │ └── 3star.pdf │ ├── 4star.imageset │ │ └── 4star.pdf │ └── 5star.imageset │ │ └── 5star.pdf │ ├── colors │ └── Contents.json │ ├── explore images │ └── Contents.json │ ├── shortcut icons │ └── Contents.json │ └── AppIcon.appiconset │ ├── Icon120.png │ ├── Icon152.png │ ├── Icon20.png │ ├── Icon29.png │ ├── Icon40.png │ ├── Icon76.png │ ├── Icon83.png │ └── Icon87.png ├── Chapter26 └── LetsEat │ ├── .DS_Store │ └── LetsEat │ └── Assets.xcassets │ ├── Contents.json │ ├── icons │ └── Contents.json │ ├── misc │ ├── Contents.json │ └── arrow.imageset │ │ └── arrow.pdf │ ├── stars │ ├── Contents.json │ ├── 0star.imageset │ │ └── 0star.pdf │ ├── 1star.imageset │ │ └── 1star.pdf │ ├── 2star.imageset │ │ └── 2star.pdf │ ├── 3star.imageset │ │ └── 3star.pdf │ ├── 4star.imageset │ │ └── 4star.pdf │ └── 5star.imageset │ │ └── 5star.pdf │ ├── colors │ └── Contents.json │ ├── explore images │ └── Contents.json │ ├── shortcut icons │ └── Contents.json │ └── AppIcon.appiconset │ ├── Icon120.png │ ├── Icon152.png │ ├── Icon20.png │ ├── Icon29.png │ ├── Icon40.png │ ├── Icon76.png │ ├── Icon83.png │ └── Icon87.png └── Chapter25 ├── LetsEatSwiftUI ├── .DS_Store └── LetsEatSwiftUI │ ├── Assets.xcassets │ └── Contents.json │ └── Preview Content │ └── Preview Assets.xcassets │ └── Contents.json └── resources └── taptrailhouse.jpg /Chapter01/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter01/.DS_Store -------------------------------------------------------------------------------- /Chapter02/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter02/.DS_Store -------------------------------------------------------------------------------- /Chapter05/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter05/.DS_Store -------------------------------------------------------------------------------- /Chapter07/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter07/.DS_Store -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/misc/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/stars/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/shortcut icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter09/LetsEat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/.DS_Store -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter10/LetsEat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/.DS_Store -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter11/LetsEat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/.DS_Store -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter12/LetsEat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/.DS_Store -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter13/LetsEat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/.DS_Store -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter14/LetsEat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/.DS_Store -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter15/LetsEat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/.DS_Store -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter16/LetsEat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/.DS_Store -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter17/LetsEat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/.DS_Store -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter18/LetsEat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/.DS_Store -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter19/LetsEat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/.DS_Store -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter20/LetsEat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/.DS_Store -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter21/LetsEat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter21/LetsEat/.DS_Store -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter22/LetsEat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter22/LetsEat/.DS_Store -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter23/LetsEat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter23/LetsEat/.DS_Store -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter24/LetsEat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter24/LetsEat/.DS_Store -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter26/LetsEat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter26/LetsEat/.DS_Store -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/misc/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/misc/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/misc/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/misc/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/misc/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/misc/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/misc/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/misc/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/misc/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/misc/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/misc/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/misc/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/stars/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/misc/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/stars/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/misc/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/stars/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/misc/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/stars/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/misc/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/stars/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/misc/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/stars/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter01/Exploring Xcode/Exploring Xcode/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/explore images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/shortcut icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/explore images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/shortcut icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/explore images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/shortcut icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/explore images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/shortcut icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/explore images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/shortcut icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/explore images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/shortcut icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/explore images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/shortcut icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/explore images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/shortcut icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/explore images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/shortcut icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/explore images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/shortcut icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/explore images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/shortcut icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/explore images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/shortcut icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/explore images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/shortcut icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/explore images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/shortcut icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/explore images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/shortcut icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/explore images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/shortcut icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter25/LetsEatSwiftUI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter25/LetsEatSwiftUI/.DS_Store -------------------------------------------------------------------------------- /Chapter25/LetsEatSwiftUI/LetsEatSwiftUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/explore images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/shortcut icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter01/Exploring Xcode/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter01/Exploring Xcode/.DS_Store -------------------------------------------------------------------------------- /Chapter25/resources/taptrailhouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter25/resources/taptrailhouse.jpg -------------------------------------------------------------------------------- /Chapter25/LetsEatSwiftUI/LetsEatSwiftUI/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/AppIcon.appiconset/Icon83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/AppIcon.appiconset/Icon83.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/misc/arrow.imageset/arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/misc/arrow.imageset/arrow.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/stars/0star.imageset/0star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/stars/0star.imageset/0star.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/stars/1star.imageset/1star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/stars/1star.imageset/1star.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/stars/2star.imageset/2star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/stars/2star.imageset/2star.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/stars/3star.imageset/3star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/stars/3star.imageset/3star.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/stars/4star.imageset/4star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/stars/4star.imageset/4star.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/stars/5star.imageset/5star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/stars/5star.imageset/5star.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/misc/time-bg.imageset/time-bg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/misc/time-bg.imageset/time-bg.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/stars/05star.imageset/05star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/stars/05star.imageset/05star.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/stars/15star.imageset/15star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/stars/15star.imageset/15star.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/stars/25star.imageset/25star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/stars/25star.imageset/25star.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/stars/35star.imageset/35star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/stars/35star.imageset/35star.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/stars/45star.imageset/45star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/stars/45star.imageset/45star.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/AppIcon.appiconset/Icon20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/AppIcon.appiconset/Icon20@2x-1.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/AppIcon.appiconset/Icon29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/AppIcon.appiconset/Icon29@2x-1.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/AppIcon.appiconset/Icon29@2x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/AppIcon.appiconset/Icon29@2x-2.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/AppIcon.appiconset/Icon40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/AppIcon.appiconset/Icon40@2x-1.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/all.imageset/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/all.imageset/all.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/bar.imageset/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/bar.imageset/bar.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/misc/logo-nav.imageset/logo-nav.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/misc/logo-nav.imageset/logo-nav.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/all.imageset/all@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/all.imageset/all@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/all.imageset/all@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/all.imageset/all@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/bar.imageset/bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/bar.imageset/bar@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/bar.imageset/bar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/bar.imageset/bar@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/wine.imageset/wine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/wine.imageset/wine.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/icons/icon-plus.imageset/icon-plus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/icons/icon-plus.imageset/icon-plus.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/misc/half-star.imageset/half-star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/misc/half-star.imageset/half-star.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/bistro.imageset/bistro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/bistro.imageset/bistro.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/cuban.imageset/cuban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/cuban.imageset/cuban.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/french.imageset/french.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/french.imageset/french.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/latin.imageset/latin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/latin.imageset/latin.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/pizza.imageset/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/pizza.imageset/pizza.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/steak.imageset/steak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/steak.imageset/steak.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/sushi.imageset/sushi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/sushi.imageset/sushi.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/tapas.imageset/tapas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/tapas.imageset/tapas.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/wine.imageset/wine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/wine.imageset/wine@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/wine.imageset/wine@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/wine.imageset/wine@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/icons/icon-photo.imageset/icon-photo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/icons/icon-photo.imageset/icon-photo.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/icons/icon-pin.imageset/icon-pin@2x.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/icons/icon-pin.imageset/icon-pin@2x.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/icons/icon-pin.imageset/icon-pin@3x.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/icons/icon-pin.imageset/icon-pin@3x.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/misc/btn-review.imageset/btn-review.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/misc/btn-review.imageset/btn-review.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/misc/detail-logo.imageset/detail-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/misc/detail-logo.imageset/detail-logo.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/misc/down-arrow.imageset/down-arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/misc/down-arrow.imageset/down-arrow.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/misc/empty-star.imageset/empty-star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/misc/empty-star.imageset/empty-star.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/misc/filled-star.imageset/filled-star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/misc/filled-star.imageset/filled-star.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/misc/photo-thumb.imageset/photo-thumb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/misc/photo-thumb.imageset/photo-thumb.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/brewery.imageset/brewery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/brewery.imageset/brewery.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/burgers.imageset/burgers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/burgers.imageset/burgers.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/comfort.imageset/comfort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/comfort.imageset/comfort.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/cuban.imageset/cuban@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/cuban.imageset/cuban@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/cuban.imageset/cuban@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/cuban.imageset/cuban@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/italian.imageset/italian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/italian.imageset/italian.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/latin.imageset/latin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/latin.imageset/latin@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/latin.imageset/latin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/latin.imageset/latin@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/mexican.imageset/mexican.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/mexican.imageset/mexican.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/organic.imageset/organic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/organic.imageset/organic.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/pizza.imageset/pizza@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/pizza.imageset/pizza@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/pizza.imageset/pizza@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/pizza.imageset/pizza@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/seafood.imageset/seafood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/seafood.imageset/seafood.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/spanish.imageset/spanish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/spanish.imageset/spanish.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/steak.imageset/steak@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/steak.imageset/steak@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/steak.imageset/steak@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/steak.imageset/steak@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/sushi.imageset/sushi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/sushi.imageset/sushi@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/sushi.imageset/sushi@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/sushi.imageset/sushi@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/tapas.imageset/tapas@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/tapas.imageset/tapas@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/tapas.imageset/tapas@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/tapas.imageset/tapas@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/icons/icon-map-on.imageset/icon-map-on.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/icons/icon-map-on.imageset/icon-map-on.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/icons/icon-review.imageset/icon-review.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/icons/icon-review.imageset/icon-review.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/misc/btn-location.imageset/btn-location.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/misc/btn-location.imageset/btn-location.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/american.imageset/american.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/american.imageset/american.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/bistro.imageset/bistro@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/bistro.imageset/bistro@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/bistro.imageset/bistro@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/bistro.imageset/bistro@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/brewery.imageset/brewery@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/brewery.imageset/brewery@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/brewery.imageset/brewery@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/brewery.imageset/brewery@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/burgers.imageset/burgers@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/burgers.imageset/burgers@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/burgers.imageset/burgers@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/burgers.imageset/burgers@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/comfort.imageset/comfort@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/comfort.imageset/comfort@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/comfort.imageset/comfort@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/comfort.imageset/comfort@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/french.imageset/french@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/french.imageset/french@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/french.imageset/french@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/french.imageset/french@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/italian.imageset/italian@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/italian.imageset/italian@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/italian.imageset/italian@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/italian.imageset/italian@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/japanese.imageset/japanese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/japanese.imageset/japanese.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/mexican.imageset/mexican@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/mexican.imageset/mexican@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/mexican.imageset/mexican@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/mexican.imageset/mexican@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/organic.imageset/organic@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/organic.imageset/organic@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/organic.imageset/organic@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/organic.imageset/organic@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/panasian.imageset/panasian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/panasian.imageset/panasian.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/peruvian.imageset/peruvian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/peruvian.imageset/peruvian.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/primerib.imageset/primerib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/primerib.imageset/primerib.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/seafood.imageset/seafood@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/seafood.imageset/seafood@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/seafood.imageset/seafood@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/seafood.imageset/seafood@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/southern.imageset/southern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/southern.imageset/southern.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/spanish.imageset/spanish@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/spanish.imageset/spanish@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/spanish.imageset/spanish@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/spanish.imageset/spanish@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/icons/icon-calendar.imageset/icon-calendar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/icons/icon-calendar.imageset/icon-calendar.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/icons/icon-map-off.imageset/icon-map-off.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/icons/icon-map-off.imageset/icon-map-off.pdf -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter21/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter21/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter21/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter21/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter21/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter21/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter21/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter21/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter21/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter21/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter21/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter21/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter21/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter21/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf -------------------------------------------------------------------------------- /Chapter21/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter21/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter22/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter22/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter22/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter22/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter22/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter22/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter22/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter22/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter22/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter22/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter22/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter22/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter22/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter22/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf -------------------------------------------------------------------------------- /Chapter22/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter22/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter23/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter23/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter23/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter23/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter23/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter23/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter23/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter23/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter23/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter23/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter23/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter23/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter23/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter23/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf -------------------------------------------------------------------------------- /Chapter23/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter23/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter24/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter24/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter24/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter24/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter24/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter24/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter24/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter24/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter24/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter24/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter24/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter24/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter24/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter24/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf -------------------------------------------------------------------------------- /Chapter24/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter24/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter26/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter26/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter26/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter26/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter26/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter26/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter26/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon83.png -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter26/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter26/LetsEat/LetsEat/Assets.xcassets/misc/arrow.imageset/arrow.pdf -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter26/LetsEat/LetsEat/Assets.xcassets/stars/0star.imageset/0star.pdf -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter26/LetsEat/LetsEat/Assets.xcassets/stars/1star.imageset/1star.pdf -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter26/LetsEat/LetsEat/Assets.xcassets/stars/2star.imageset/2star.pdf -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter26/LetsEat/LetsEat/Assets.xcassets/stars/3star.imageset/3star.pdf -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter26/LetsEat/LetsEat/Assets.xcassets/stars/4star.imageset/4star.pdf -------------------------------------------------------------------------------- /Chapter26/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter26/LetsEat/LetsEat/Assets.xcassets/stars/5star.imageset/5star.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/american.imageset/american@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/american.imageset/american@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/american.imageset/american@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/american.imageset/american@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/caribbean.imageset/caribbean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/caribbean.imageset/caribbean.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/japanese.imageset/japanese@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/japanese.imageset/japanese@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/japanese.imageset/japanese@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/japanese.imageset/japanese@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/panasian.imageset/panasian@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/panasian.imageset/panasian@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/panasian.imageset/panasian@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/panasian.imageset/panasian@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/peruvian.imageset/peruvian@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/peruvian.imageset/peruvian@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/peruvian.imageset/peruvian@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/peruvian.imageset/peruvian@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/primerib.imageset/primerib@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/primerib.imageset/primerib@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/primerib.imageset/primerib@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/primerib.imageset/primerib@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/southern.imageset/southern@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/southern.imageset/southern@2x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/explore images/southern.imageset/southern@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/explore images/southern.imageset/southern@3x.png -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/misc/filter-default.imageset/filter-default.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/misc/filter-default.imageset/filter-default.pdf -------------------------------------------------------------------------------- /Chapter09/Assets.xcassets/misc/heart-selected.imageset/heart-selected.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/Assets.xcassets/misc/heart-selected.imageset/heart-selected.pdf -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf -------------------------------------------------------------------------------- /Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter09/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf -------------------------------------------------------------------------------- /Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter10/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf -------------------------------------------------------------------------------- /Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter11/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf -------------------------------------------------------------------------------- /Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter12/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf -------------------------------------------------------------------------------- /Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter13/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf -------------------------------------------------------------------------------- /Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter14/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf -------------------------------------------------------------------------------- /Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter15/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf -------------------------------------------------------------------------------- /Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter16/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf -------------------------------------------------------------------------------- /Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter17/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf -------------------------------------------------------------------------------- /Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter18/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon60@3x.png -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/05star.imageset/05star.pdf -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/15star.imageset/15star.pdf -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/25star.imageset/25star.pdf -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/35star.imageset/35star.pdf -------------------------------------------------------------------------------- /Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter19/LetsEat/LetsEat/Assets.xcassets/stars/45star.imageset/45star.pdf -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@2x.png -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon20@3x.png -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@2x.png -------------------------------------------------------------------------------- /Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/iOS-13-Programming-for-Beginners/HEAD/Chapter20/LetsEat/LetsEat/Assets.xcassets/AppIcon.appiconset/Icon40@3x.png --------------------------------------------------------------------------------