update for network Layer

This commit is contained in:
Jungpyo Hong
2021-05-03 01:57:35 -05:00
committed by GitHub
parent 0f0a3d76a8
commit ad8e1c9bf2

View File

@ -21,6 +21,8 @@
- [VIPER](#VIPER) - [VIPER](#VIPER)
- [UIDesign](#UIDesign) - [UIDesign](#UIDesign)
- [Helper](#Helper) - [Helper](#Helper)
- [Email, Message, Call](#Email,-Message,-Call)
- [Network Layer](#Network-Layer)
- [API](#API) - [API](#API)
- [JSON](#JSON) - [JSON](#JSON)
- [Third Party Library](#Third-Party-Library) - [Third Party Library](#Third-Party-Library)
@ -131,6 +133,10 @@ C > Controller class It will be there but the responsibility of view busi
## Helper ## Helper
All files are resuable files and protocol oriented. **Just Copy and Paste inside your project and use it!!** 👍
### Email, Message, Call
You can check the file in the follow link You can check the file in the follow link
- [Email, Message, Call](https://github.com/jphong1111/Useful_Swift/blob/main/Helper/ConversationManager.swift) - [Email, Message, Call](https://github.com/jphong1111/Useful_Swift/blob/main/Helper/ConversationManager.swift)
@ -159,6 +165,10 @@ Then use it
} }
``` ```
### Network Layer
- [Network Layer](https://github.com/jphong1111/Useful_Swift/blob/main/Helper/Network-Layer)
## API ## API
API(Application Programming Interface) is an interface that defines interactions between multiple software applications or mixed hardware-software intermediaries. It defines the kinds of calls or requests that can be made, how to make them, the data formats that should be used, the conventions to follow, etc. API(Application Programming Interface) is an interface that defines interactions between multiple software applications or mixed hardware-software intermediaries. It defines the kinds of calls or requests that can be made, how to make them, the data formats that should be used, the conventions to follow, etc.