aboutsummaryrefslogtreecommitdiff
path: root/foray/Presenters (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-07-18Custom share sheet icons and load them with UIImageNicholas Tay1-1/+1
Found that LPLinkMetadata + NSItemProvider can actually use UIImage. I think this is better now since not using a bundle load and can use assets.
2022-07-17Clean up force unwraps and letsNicholas Tay1-6/+3
Wow, I didn't know `if let` was a thing back then, haha. Also made UIImage a bit safer in case asset is missing by unwrapping in one common place.
2022-07-17Experiment with async/awaitNicholas Tay1-9/+10
Note that URLSession async only works >=iOS 15. I changed the target for now, but may mess with continuations.
2022-07-17'weak self' stuffNicholas Tay1-1/+2
2022-03-25Reorganise: NetworkManager -> Fetcher, Models -> dedicated groupsNicholas Tay1-8/+10
2022-03-25getData -> fetch, try threading, move logic aroundNicholas Tay1-6/+10
2022-03-24First attempt at PresenterNicholas Tay1-0/+32
This is admittedly pretty hard for me to wrap my head around, and I'm not even using background threading explicitly yet. Will improve.