-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathContents.swift
64 lines (49 loc) · 1.08 KB
/
Contents.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//: Playground - noun: a place where people can play
// Powered by https://maimieng.com from https://github.com/kingcos/Swift-X-Design-Patterns
import UIKit
// 协议
protocol GiveGift {
func giveDolls()
func giveFlowers()
func giveChocolate()
}
// 被追求者
struct SchoolGirl {
var name = ""
}
// 追求者
struct Pursuit: GiveGift {
var mm = SchoolGirl()
func giveDolls() {
print("追求者送 \(mm.name) 洋娃娃")
}
func giveFlowers() {
print("追求者送 \(mm.name) 鲜花")
}
func giveChocolate() {
print("追求者送 \(mm.name) 巧克力")
}
}
// 代理
struct Proxy: GiveGift {
var gg: Pursuit
init(_ mm: SchoolGirl) {
self.gg = Pursuit(mm: mm)
}
func giveDolls() {
gg.giveDolls()
}
func giveFlowers() {
gg.giveFlowers()
}
func giveChocolate() {
gg.giveChocolate()
}
}
var girl = SchoolGirl()
girl.name = "Jane"
let p = Proxy(girl)
// 代理替追求者执行
p.giveDolls()
p.giveFlowers()
p.giveChocolate()