aboutsummaryrefslogtreecommitdiff
path: root/foray/ForayDetailViewController.swift (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Storyboard is GONENicholas Tay2022-03-191-0/+1
| | | | | | | | | Note - I had to fo into the Target settings -> Info -> Custom iOS Target Properties -> adjust the Application Scene Manifest there. Resources: - https://ioscoachfrank.com/remove-main-storyboard.html - https://stackoverflow.com/questions/25167458/changing-navigation-title-programmatically
* Detail view is now programatically createdNicholas Tay2022-03-191-20/+8
| | | | | Using SnapKit and some experimentation around the VC. Next step is to change segue and then maybe get rid of storyboard all together.
* MyItem -> PenguinItemNicholas Tay2022-03-161-1/+1
| | | | | | Makes it clear which parts are tightly coupled. I want to learn how to make this more generic so I can try hooking into other APIs easily (which make require different destructuring of JSON).
* Modify details to multiline with release date includedNicholas Tay2022-03-161-3/+10
|
* Add a detail viewNicholas Tay2022-03-161-0/+33
Resources: - https://guides.codepath.com/ios/Using-UITableView (was a bit dated)