iOS中MVP架构实践小技巧

作者: 微微笑的蜗牛 | 来源:发表于2018-11-13 16:08 被阅读52次

一般来说,MVP架构在Andriod中用的比较多,但它也可以在iOS中使用。我在重构项目的一个功能时,为了改善以前代码的层次结构,同时也想体验一下MVP的实践,所以使用了该模式,同时也积累了一点小技巧。

MVP分层模型以及交互关系如图所示:

QQ20181113-1.png

view和model通过presenter进行交互,切断直接联系。

在使用该架构后,虽然分层清晰了,但是它有个缺点,presenter中粘合接口过多

我们知道,mvp各层的交互都是通过接口来完成的,presenter作为中介者,需要实现view操作model层的接口model层操作UI的接口。而presenter实现这些接口时,大部分是简单的调用model和view的接口,并没有其他额外操作,这样会导致presenter中粘合方法过多,并且新增接口,presenter也需要新增实现。所以,当功能复杂时,接口暴增,presenter中也会有越来越多的接口实现,同时也不利于维护。

先看个简单的弹幕例子,介绍下上面所说的问题。

Interface

// presenter提供的给view调用的接口
@protocol DanmuPresenterInterface <NSObject>
@optional
/// 清除聊天记录
- (void)cleanChats;
@end
// view提供的给presenter调用的接口
@protocol DanmuViewInterface <NSObject>

@optional
// reload
- (void)reloadTableView;
@end
// model层调用presenter,更新ui接口
@protocol DanmuDataOutputInterface <NSObject>

@optional
// reload
- (void)reloadTableView;
@end
// prenseter调用model层,更新数据接口
@protocol DanmuDataInterface <NSObject>
@optional
/// 清除聊天记录
- (void)cleanChats;
@end

Presenter

@interface DanmuPresenter()
// 数据层接口
@property (nonatomic, strong) id<DanmuDataInterface> dataManager;
// ui层接口
@property (nonatomic, weak) id<DanmuViewInterface> danmuViewInterface;
@end

@implementation DanmuPresenter

// presenter提供的给view调用的接口
#pragma mark - DanmuPresenterInterface
/// 清除聊天记录
- (void)cleanChats {
    [self.dataManager cleanChats];
}

// 实现model层调用更新ui接口
#pragma mark - DanmuDataOutputInterface
// reload
- (void)reloadTableView {
    [self.danmuViewInterface reloadTableView];
}

@end

这个例子中,交互关系如下:

QQ20181113-2.png

在view中的调用如下:

// self.presenterInterface为presenter
[self.presenterInterface cleanChats];

在dataManager中调用如下:

// self.DanmuDataOutputInterface为presenter
[self.DanmuDataOutputInterface reloadTableView];

从上面可以看出,如果DanmuPresenterInterface、DanmuDataOutputInterface有新增接口,presenter中必须新增相应实现,比较麻烦。

实际上,在danmuView中调用cleanChats时,presenter只是起了一层中转的作用,内部还是直接调用的dataManager的接口。对于这种类型的接口来说,会极大的增加presenter的接口实现方法数。

所以,在重构过程中,为了减少粘合接口,考虑直接将消息转发到对应的实例中,不需要写实现方法。如下所示。

  • 如果是danmuView通过DanmuPresenterInterface接口(最后实际上是调用DanmuDataInterface操作model数据),则直接转发到dataManager
  • 如果是dataManager调用DanmuDataOutputInterface接口来更新UI,则直接转发到danmuView
// 由于presenter作为中介者,需要实现view操作model层的接口(具体实现为dataManger),model层操作UI的接口(具体实现为chatView),这样会导致粘合方法过多,并且新增接口,presenter也需要新增实现。故使用消息转发来简化处理。
- (id)forwardingTargetForSelector:(SEL)aSelector {
    // 转发DanmuDataInterface实现到dataManager
    struct objc_method_description omd = protocol_getMethodDescription(@protocol(DanmuDataInterface), aSelector, NO, YES);
    if (omd.name != NULL) {
        if ([self.dataManager respondsToSelector:aSelector]) {
            return self.dataManager;
        }
    }
    
    // 转发DanmuDataOutputInterface实现到danmuView
    omd = protocol_getMethodDescription(@protocol(DanmuDataOutputInterface), aSelector, NO, YES);
    if (omd.name != NULL) {
        if ([self.danmuViewInterface respondsToSelector:aSelector]) {
            return self.danmuViewInterface;
        }
    }
    
    return [super forwardingTargetForSelector:aSelector];
}

这样,DanmuDataInterface、DanmuDataOutputInterface中的接口在presenter中的实现均可去除。在dataManager调用的地方为[self.uiInterface reloadTableView],注意这里不能判断respondsToSelector,因为presenter并没有实现这些方法,所以判断了不会走。

但是,这种做法是有限制的。要求presenter中实现的接口,是没有做任何额外的逻辑,而是直接调用model层或者ui层的实现。

比如,下面的实现另外调用了[self xx],就不适用了。

#pragma mark - DanmuPresenterInterface
/// 清除聊天记录
- (void)cleanChats {
    // do something
    [self xx];
    [self.dataManager cleanChats];
}

以上,就是mvp实践过程的小结。

相关文章

网友评论

    本文标题:iOS中MVP架构实践小技巧

    本文链接:https://www.haomeiwen.com/subject/qwjlfqtx.html