Hey, I have just reduced the price for all products. Let's prepare our programming skills for the post-COVID era. Check it out »
Strategy

Strategy in Swift

Strategy is a behavioral design pattern that turns a set of behaviors into objects and makes them interchangeable inside original context object.

The original object, called context, holds a reference to a strategy object and delegates it executing the behavior. In order to change the way the context performs its work, other objects may replace the currently linked strategy object with another one.

Usage of the pattern in Swift

Complexity:

Popularity:

Usage examples: The Strategy pattern is very common in Swift code. It’s often used in various frameworks to provide users a way to change the behavior of a class without extending it.

Identification: Strategy pattern can be recognized by a method that lets nested object do the actual work, as well as the setter that allows replacing that object with a different one.

Strategy in Other Languages

Design Patterns: Strategy in Java Design Patterns: Strategy in C# Design Patterns: Strategy in C++ Design Patterns: Strategy in PHP Design Patterns: Strategy in Python Design Patterns: Strategy in Ruby Design Patterns: Strategy in TypeScript Design Patterns: Strategy in Go