From 4f6ddc6f33d9de387ccf6ea981eb72c2e9574310 Mon Sep 17 00:00:00 2001 From: Jungpyo Hong Date: Mon, 5 Jul 2021 02:34:07 -0500 Subject: [PATCH] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index fb816d9..1036ba7 100644 --- a/README.md +++ b/README.md @@ -221,6 +221,11 @@ class DataManager { ## Factory +Factory method is a creational design pattern which solves the problem of creating product objects without specifying their concrete classes. + +- [Factory Method in Swift](https://refactoring.guru/design-patterns/factory-method/swift/example) +- [The Factory Pattern using Swift](https://stevenpcurtis.medium.com/the-factory-pattern-using-swift-b534ae9f983f) + ## Observer Observer is a behavioral design pattern that allows some objects to notify other objects about changes in their state.