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
5bebdab3da
commit
69264c09b7
19
README.md
19
README.md
@ -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
|
||||
|
||||
### Design Pattern
|
||||
## Design Pattern
|
||||
|
||||
### Delegate Pattern
|
||||
|
||||
```
|
||||
weak var delegate: SomeProtocol?
|
||||
```
|
||||
|
||||
### Singleton Pattern
|
||||
|
||||
|
||||
```
|
||||
class SingletonPattern {
|
||||
static let manager = SingletonPattern()
|
||||
|
||||
private init() {}
|
||||
```
|
||||
|
||||
## Delegate pattern
|
||||
|
||||
## UIDesign
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user