From a8c3db459cc1be105dd910efb8bbc08bc163fb91 Mon Sep 17 00:00:00 2001 From: Nicholas Tay Date: Mon, 14 Mar 2022 15:47:36 +1100 Subject: Learning UITableViewController: array data + custom cells Forgot to commit after finishing just the using array data bit. So committing with the custom cells done. https://www.ralfebert.com/ios-examples/uikit/uitableviewcontroller/ --- foray/Assets.xcassets/AppIcon.appiconset/Contents.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'foray/Assets.xcassets/AppIcon.appiconset/Contents.json') diff --git a/foray/Assets.xcassets/AppIcon.appiconset/Contents.json b/foray/Assets.xcassets/AppIcon.appiconset/Contents.json index 9221b9b..995ee2f 100644 --- a/foray/Assets.xcassets/AppIcon.appiconset/Contents.json +++ b/foray/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -1,91 +1,109 @@ { "images" : [ { + "filename" : "rbt-20@2x.png", "idiom" : "iphone", "scale" : "2x", "size" : "20x20" }, { + "filename" : "rbt-20@3x.png", "idiom" : "iphone", "scale" : "3x", "size" : "20x20" }, { + "filename" : "rbt-29@2x.png", "idiom" : "iphone", "scale" : "2x", "size" : "29x29" }, { + "filename" : "rbt-29@3x.png", "idiom" : "iphone", "scale" : "3x", "size" : "29x29" }, { + "filename" : "rbt-40@2x.png", "idiom" : "iphone", "scale" : "2x", "size" : "40x40" }, { + "filename" : "rbt-40@3x.png", "idiom" : "iphone", "scale" : "3x", "size" : "40x40" }, { + "filename" : "rbt-60@2x.png", "idiom" : "iphone", "scale" : "2x", "size" : "60x60" }, { + "filename" : "rbt-60@3x.png", "idiom" : "iphone", "scale" : "3x", "size" : "60x60" }, { + "filename" : "rbt-20.png", "idiom" : "ipad", "scale" : "1x", "size" : "20x20" }, { + "filename" : "rbt-20@2x.png", "idiom" : "ipad", "scale" : "2x", "size" : "20x20" }, { + "filename" : "rbt-29.png", "idiom" : "ipad", "scale" : "1x", "size" : "29x29" }, { + "filename" : "rbt-29@2x.png", "idiom" : "ipad", "scale" : "2x", "size" : "29x29" }, { + "filename" : "rbt-40.png", "idiom" : "ipad", "scale" : "1x", "size" : "40x40" }, { + "filename" : "rbt-40@2x.png", "idiom" : "ipad", "scale" : "2x", "size" : "40x40" }, { + "filename" : "rbt-76.png", "idiom" : "ipad", "scale" : "1x", "size" : "76x76" }, { + "filename" : "rbt-76@2x.png", "idiom" : "ipad", "scale" : "2x", "size" : "76x76" }, { + "filename" : "rbt-83.5@2x.png", "idiom" : "ipad", "scale" : "2x", "size" : "83.5x83.5" }, { + "filename" : "rbt-1024.png", "idiom" : "ios-marketing", "scale" : "1x", "size" : "1024x1024" -- cgit