-
Notifications
You must be signed in to change notification settings - Fork 472
Multithreading in iOS
Jasdev Singh edited this page Jan 26, 2016
·
7 revisions
- Grand Central Dispatch (w/ dispatch groups)
-
NSOperation
(w/NSOperationQueue
)
- Simple block example (download an image and return to the main thread to set it)
- More advanced example with doing background work on a queue
- Present a Swift wrapper for GCD to make the APIs nicer to work with
- Wallpaper Downloading NSOperation
- Image Resizing NSOperation
- Operation dependencies (using the previous two)
- Show progress for an operation
- Show how to enqueue operations