Update README.md

This commit is contained in:
Jungpyo Hong
2021-04-10 04:11:11 -05:00
committed by GitHub
parent 5bebdab3da
commit 69264c09b7

View File

@ -25,9 +25,24 @@ The way of force you to adapt coding convention
put .yml file into root folder and apply following code in Build Phases put .yml file into root folder and apply following code in Build Phases
### Design Pattern ## Design Pattern
### Delegate Pattern
```
weak var delegate: SomeProtocol?
```
### Singleton Pattern
```
class SingletonPattern {
static let manager = SingletonPattern()
private init() {}
```
## Delegate pattern
## UIDesign ## UIDesign