aboutsummaryrefslogtreecommitdiff
path: root/foray (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-03-16MyItem -> PenguinItemNicholas Tay2-14/+14
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).
2022-03-16Add refresh control + fix weird cachingNicholas Tay2-2/+19
It might be my web server causing the weird caching with headers (it's just a json file on nginx). Changing the policy in the request seems to have fixed it though. Refresh control references: - https://stackoverflow.com/questions/24475792/how-to-use-pull-to-refresh-in-swift
2022-03-16Modify details to multiline with release date includedNicholas Tay2-5/+12
2022-03-16Loading overlay on main screenNicholas Tay1-0/+11
I'm not 100% sure if this is the best way to do it, but it looks decent and it works. Resources: - https://stackoverflow.com/questions/27960556/loading-an-overlay-when-running-long-tasks-in-ios
2022-03-16Add a detail viewNicholas Tay3-2/+125
Resources: - https://guides.codepath.com/ios/Using-UITableView (was a bit dated)
2022-03-15Make items Decodable and hook up to a JSON dummy endpointNicholas Tay1-21/+53
Resources: - https://stackoverflow.com/questions/56443859/display-in-json-api-table-view-in-swift - https://www.avanderlee.com/swift/json-parsing-decoding/ - https://stackoverflow.com/questions/24321165/make-rest-api-call-in-swift
2022-03-14Second type of custom cellNicholas Tay2-10/+85
Not sure if this is the correct way of switching into a different cell type with the prototypes, but it works. To review.
2022-03-14Grouping items together by yearNicholas Tay1-10/+49
https://www.ralfebert.com/ios-examples/uikit/uitableviewcontroller/grouping-sections/
2022-03-14Learning UITableViewController: array data + custom cellsNicholas Tay29-32/+244
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/