mirror of
https://github.com/jphong1111/awesome-ios-developer.git
synced 2025-01-03 13:31:09 +07:00
Update README.md
This commit is contained in:
parent
92c9f3b645
commit
dd62a57ee4
17
README.md
17
README.md
@ -25,6 +25,10 @@
|
||||
- [JSON](#JSON)
|
||||
- [Third Party Library](#Third-Party-Library)
|
||||
- [GCD](#GCD)
|
||||
- [DispatchQueue](#DispatchQueue)
|
||||
- [DispatchGroup](#DispatchGroup)
|
||||
- [DispatchWorkItem](#DispatchWorkItem)
|
||||
- [Address Sanitizer](#Address-Sanitizer)
|
||||
- [Useful Stuff](#Useful-Stuff)
|
||||
- [Show Preview in UIKit(Build UI with Code Base)](#show-preview-in-uikitbuild-ui-with-code-base-----)
|
||||
- [Write README.md](#write-readmemd)
|
||||
@ -187,6 +191,19 @@ This extension makes JSON more structable
|
||||
## GCD
|
||||
GCD(Grand Central Dispatch) is a low-level API for managing concurrent operations. It can help you improve your app’s responsiveness by deferring computationally expensive tasks to the background.
|
||||
|
||||
### DispatchQueue
|
||||
|
||||
#### main
|
||||
|
||||
#### global()
|
||||
|
||||
### DispatchGroup
|
||||
|
||||
### DispatchWorkItem
|
||||
|
||||
### Address Sanitizer
|
||||
Address Sanitizer is a good way to find the [Readers and Writers problem](#https://en.wikipedia.org/wiki/Readers%E2%80%93writers_problem) in your application.
|
||||
|
||||
## Third Party Library
|
||||
[This github](https://github.com/vsouza/awesome-ios) contains all the popular libraries in Swift:+1:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user