博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【译】Swift 2.0 下面向协议的MVVM架构实践
阅读量:6441 次
发布时间:2019-06-23

本文共 7164 字,大约阅读时间需要 23 分钟。

hot3.png

自从令人兴奋的[]在Swift的WWDC大会上发布以来。我对协议的使用考虑了很多。但是在现实中,我并没有太多的顾及和使用这些功能。我还仍旧在消化到底面向协议的编程方法是什么,在代码的哪些地方应该使用,而不是使用我目前使用的`go-to`编程方法。

...所以,当我想起来要在哪里应用这些概念性的东西时,我非常激动,那就是MVVM !我已经在之前的博客中使用过MVVM架构,如果你想了解更多MVVM相关知识请参考[]。接下来我将讲解,如何添加面向协议。

我将会使用一个简单的例子。一个只有一个设置选项的设置页面,把应用设置为Minion模式,当然你也可以扩展为多个设置选项。

03.png

View Cell

一个极其普通的Cell,它包含一个Label和一个开关控件。你也可以在其他地方使用这个Cell,例如注册页面添加一个“记住我”的开关选项。所以,你应该保持这个页面通用性。

一个复杂的配置

通常,我在cell中使用一个设置方法,来监听所有对应用设置可能的变更,这看起来是这样的:

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
class SwitchWithTextTableViewCell: UITableViewCell {
     
    @IBOutlet private weak var label: UILabel!
    @IBOutlet private weak var switchToggle: UISwitch!
     
    typealias onSwitchToggleHandlerType = (switchOn: Bool) -> Void
    private var onSwitchToggleHandler: onSwitchToggleHandlerType?
     
    override func awakeFromNib() {
        super.awakeFromNib()
    }
     
    func configure(withTitle title: String,
        switchOn: Bool,
        onSwitchToggleHandler: onSwitchToggleHandlerType? = nil)
    {
        label.text = title
        switchToggle.on = switchOn
         
        self.onSwitchToggleHandler = onSwitchToggleHandler
    }
     
    @IBAction func onSwitchToggle(sender: UISwitch) {
        onSwitchToggleHandler?(switchOn: sender.on)
    }
}

通过 Swift 的默认参数,可以添加其他的设置选项到这个设置方法,而不必改变代码中的其他地方,使用起来非常方便。例如,当设计师说开关按钮的颜色需应该各不相同,这时候我就可以添加一个默认参数。

1
2
3
4
5
6
7
8
9
10
11
12
    func configure(withTitle title: String,
        switchOn: Bool,
        switchColor: UIColor = .purpleColor(),
        onSwitchToggleHandler: onSwitchToggleHandlerType? = nil)
    {
        label.text = title
        switchToggle.on = switchOn
        // color option added!
        switchToggle.onTintColor = switchColor
         
        self.onSwitchToggleHandler = onSwitchToggleHandler
    }

虽然在这种情况下看起来并不是什么大问题,但是随着时间的增加,事实上这个方法将会变得非常冗长、复杂!是时候由面向协议的编程方法登场了。

面向协议的编程方法

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
protocol SwitchWithTextCellProtocol {
    var title: String { get }
    var switchOn: Bool { get }
     
    func onSwitchTogleOn(on: Bool)
}
  
class SwitchWithTextTableViewCell: UITableViewCell {
  
    @IBOutlet private weak var label: UILabel!
    @IBOutlet private weak var switchToggle: UISwitch!
  
    private var delegate: SwitchWithTextCellProtocol?
     
    override func awakeFromNib() {
        super.awakeFromNib()
    }
     
    func configure(withDelegate delegate: SwitchWithTextCellProtocol) {
        self.delegate = delegate
         
        label.text = delegate.title
        switchToggle.on = delegate.switchOn
    }
  
    @IBAction func onSwitchToggle(sender: UISwitch) {
        delegate?.onSwitchTogleOn(sender.on)
    }
}

当设计师说需要改变开关控件颜色的时候会发生什么?以下代码可以展现协议扩展的奇妙之处。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
extension SwitchWithTextCellProtocol {
     
    // set the default color here!
    func switchColor() -> UIColor {
        return .purpleColor()
    }
}
  
class SwitchWithTextTableViewCell: UITableViewCell {
     
    // truncated, see above 
  
    func configure(withDelegate delegate: SwitchWithTextCellProtocol) {
        self.delegate = delegate
         
        label.text = delegate.title
        switchToggle.on = delegate.switchOn
        // color option added!
        switchToggle.onTintColor = delegate.switchColor()
    }
}

在以上代码中协议的扩展实现了默认的switchColor选项,所以,任何已经实现了这个协议或者并不关心设置开关颜色的人,不用关注这个扩展。只有一个具有不同颜色的新的开关控件可以实现。

ViewModel

所以现在剩下的事情将会非常简单。我将会为MinionMode的设置cell写一个ViewModel。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import UIKit
  
struct MinionModeViewModel: SwitchWithTextCellProtocol {
    var title = "Minion Mode!!!"
    var switchOn = true
     
    func onSwitchTogleOn(on: Bool) {
        if on {
            print("The Minions are here to stay!")
        } else {
            print("The Minions went out to play!")
        }
    }
     
    func switchColor() -> UIColor {
        return .yellowColor()
    }
}

ViewController

最后一步就是在ViewController中设置cell的时候将ViewModel传给cell。

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
import UIKit
  
class SettingsViewController: UITableViewController {
  
    enum Setting: Int {
        case MinionMode
        // other settings here
    }
     
    override func viewDidLoad() {
        super.viewDidLoad()
    }
  
    // MARK: - Table view data source
  
    override func tableView(tableView: UITableView,
        numberOfRowsInSection section: Int) -> Int
    {
        return 1
    }
  
    override func tableView(tableView: UITableView,
        cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
    {
        if let setting = Setting(rawValue: indexPath.row) {
            switch setting {
            case .MinionMode:
                let cell = tableView.dequeueReusableCellWithIdentifier("SwitchWithTextTableViewCell", forIndexPath: indexPath) as! SwitchWithTextTableViewCell
                 
                // this is where the magic happens!
                cell.configure(withDelegate: MinionModeViewModel())
                return cell
            }
        }
         
        return tableView.dequeueReusableCellWithIdentifier("defaultCell", forIndexPath: indexPath)
    }
  
}

通过使用协议的扩展,是面向协议的编程方法有了很大的意义,并且我在寻找更多的使用场景。以上代码的全部内容放在[]上。

更新:将数据源和代理分开

在评论中,Marc Baldwin 建议分开cell的数据源和代理方法到两个协议中,就像UITableView中的那样。我很赞成这个意见,以下是我修改后的代码。

View Cell

Cell将拥有两个协议,并且任何一个协议都可以设置这个cell。

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
import UIKit
  
protocol SwitchWithTextCellDataSource {
    var title: String { get }
    var switchOn: Bool { get }
}
  
protocol SwitchWithTextCellDelegate {
    func onSwitchTogleOn(on: Bool)
     
    var switchColor: UIColor { get }
    var textColor: UIColor { get }
    var font: UIFont { get }
}
  
extension SwitchWithTextCellDelegate {
     
    var switchColor: UIColor {
        return .purpleColor()
    }
     
    var textColor: UIColor {
        return .blackColor()
    }
     
    var font: UIFont {
        return .systemFontOfSize(17)
    }
}
  
class SwitchWithTextTableViewCell: UITableViewCell {
  
    @IBOutlet private weak var label: UILabel!
    @IBOutlet private weak var switchToggle: UISwitch!
  
    private var dataSource: SwitchWithTextCellDataSource?
    private var delegate: SwitchWithTextCellDelegate?
     
    override func awakeFromNib() {
        super.awakeFromNib()
    }
     
    func configure(withDataSource dataSource: SwitchWithTextCellDataSource, delegate: SwitchWithTextCellDelegate?) {
        self.dataSource = dataSource
        self.delegate = delegate
         
        label.text = dataSource.title
        switchToggle.on = dataSource.switchOn
        // color option added!
        switchToggle.onTintColor = delegate?.switchColor
    }
  
    @IBAction func onSwitchToggle(sender: UISwitch) {
        delegate?.onSwitchTogleOn(sender.on)
    }
}

ViewModel

你现在可以在扩展里把数据源和delegate逻辑分开了:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import UIKit
  
struct MinionModeViewModel: SwitchWithTextCellDataSource {
    var title = "Minion Mode!!!"
    var switchOn = true
}
  
extension MinionModeViewModel: SwitchWithTextCellDelegate {
     
    func onSwitchTogleOn(on: Bool) {
        if on {
            print("The Minions are here to stay!")
        } else {
            print("The Minions went out to play!")
        }
    }
     
    var switchColor: UIColor {
        return .yellowColor()
    }
}

ViewController

这一部分是我不十分确定,ViewController不能传递ViewModel两次:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
override func tableView(tableView: UITableView,
        cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
    {
        if let setting = Setting(rawValue: indexPath.row) {
            switch setting {
            case .MinionMode:
                let cell = tableView.dequeueReusableCellWithIdentifier("SwitchWithTextTableViewCell", forIndexPath: indexPath) as! SwitchWithTextTableViewCell
                 
                // this is where the magic happens!
                let viewModel = MinionModeViewModel()
                cell.configure(withDataSource: viewModel, delegate: viewModel)
                return cell
            }
        }
         
        return tableView.dequeueReusableCellWithIdentifier("defaultCell", forIndexPath: indexPath)
    }

代码已经上传[]

转载于:https://my.oschina.net/fadoudou/blog/626763

你可能感兴趣的文章
linux 大量的TIME_WAIT解决办法
查看>>
GitHub for Windows
查看>>
我在使用eclipse配置Tomcat服务器的时候发现,默认情况下Tocmat把我们部署的项目放在了workspaces下面,而不是像Myeclipse默认的那样放在tomcat的安装路径下。...
查看>>
beautifulsoup测试
查看>>
idea使用generator自动生成model、mapper、mapper.xml(转)
查看>>
什么是机械键盘的
查看>>
MySQL 语句使用到的关键字 函数 记录
查看>>
AO安装需要Microsoft Visual Studio 2013?
查看>>
Android Duplicate files copied in APK
查看>>
Ubuntu 14.04 安装VMware 12
查看>>
JMeter选择协议踩过的坑
查看>>
Cucumber 使用例子
查看>>
数据挖掘之聚类算法K-Means总结
查看>>
第二十二篇:C++中的多态机制
查看>>
Linux知识积累(4) Linux下chkconfig命令详解
查看>>
几种常用的数据库连接池
查看>>
VS2017自带VS2015编译器等在命令行下无法使用问题
查看>>
outlook2016中如何设置两个账户都自动有各自默认签名
查看>>
ASP.NET 运行机制详解
查看>>
POJ 2492 A Bug's Life
查看>>