Update README.md

This commit is contained in:
Jungpyo Hong
2021-05-07 03:10:24 -05:00
committed by GitHub
parent 058aa2b439
commit 6049d32e20

View File

@ -36,6 +36,9 @@
- [DispatchGroup](#DispatchGroup) - [DispatchGroup](#DispatchGroup)
- [DispatchWorkItem](#DispatchWorkItem) - [DispatchWorkItem](#DispatchWorkItem)
- [Thread Sanitizer](#Thread-Sanitizer) - [Thread Sanitizer](#Thread-Sanitizer)
- [Testing](#Testing)
- [Unit Test](#Unit-Test)
- [UI Test](#UI-Test)
- [Useful Stuff](#Useful-Stuff) - [Useful Stuff](#Useful-Stuff)
- [Show Preview in UIKit(Build UI with Code Base)](#show-preview-in-uikitbuild-ui-with-code-base-----) - [Show Preview in UIKit(Build UI with Code Base)](#show-preview-in-uikitbuild-ui-with-code-base-----)
- [Write README.md](#write-readmemd) - [Write README.md](#write-readmemd)
@ -360,6 +363,9 @@ struct User: Codable {
### Various API Site ### Various API Site
- [rapidAPI](https://www.rapidapi.com) - [rapidAPI](https://www.rapidapi.com)
## Third Party Library
[This github](https://github.com/vsouza/awesome-ios) contains all the popular libraries in Swift:+1:
## GCD ## GCD
GCD(Grand Central Dispatch) is a low-level API for managing concurrent operations. It can help you improve your apps responsiveness by deferring computationally expensive tasks to the background. GCD(Grand Central Dispatch) is a low-level API for managing concurrent operations. It can help you improve your apps responsiveness by deferring computationally expensive tasks to the background.
@ -389,8 +395,11 @@ And then go to **RUN** and check **THREAD SANITIZER** 👈
<img src="https://github.com/jphong1111/Useful_Swift/blob/main/Images/thread_sanitizer.png"> <img src="https://github.com/jphong1111/Useful_Swift/blob/main/Images/thread_sanitizer.png">
## Third Party Library ## Testing
[This github](https://github.com/vsouza/awesome-ios) contains all the popular libraries in Swift:+1:
### Unit Test
### UI Test
## Useful Stuff ## Useful Stuff