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/mh.imageset/Contents.json | 21 +++++++++++++++++++++ foray/Assets.xcassets/mh.imageset/mh.png | Bin 0 -> 174713 bytes 2 files changed, 21 insertions(+) create mode 100644 foray/Assets.xcassets/mh.imageset/Contents.json create mode 100644 foray/Assets.xcassets/mh.imageset/mh.png (limited to 'foray/Assets.xcassets/mh.imageset') diff --git a/foray/Assets.xcassets/mh.imageset/Contents.json b/foray/Assets.xcassets/mh.imageset/Contents.json new file mode 100644 index 0000000..b2edaaa --- /dev/null +++ b/foray/Assets.xcassets/mh.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "mh.png", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/foray/Assets.xcassets/mh.imageset/mh.png b/foray/Assets.xcassets/mh.imageset/mh.png new file mode 100644 index 0000000..22f9125 Binary files /dev/null and b/foray/Assets.xcassets/mh.imageset/mh.png differ -- cgit