> For the complete documentation index, see [llms.txt](https://wilden-chen.gitbook.io/swift-design-patterns/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wilden-chen.gitbook.io/swift-design-patterns/mvp.md).

# 設計模式之神話 - MVP

Model-View-Presenter，簡稱 MVP，是設計模式中一種對針對 MVC 模式，再審議後所延伸提出的一種設計模式。

Presenter 包含著元件的事件處理，負責檢索 Model 取得資料，和將取得的資料經過格式轉換與 View 進行溝通。 MVP 設計模式通常會再加上 Controller 做為整體應用程序的工作。
