美文网首页iOS DeveloperiOS
iOS设计模式之—中介者模式

iOS设计模式之—中介者模式

作者: 麋晓鹿 | 来源:发表于2016-12-21 01:31 被阅读104次

    一、使用场景

    面向对象的设计鼓励我们把行为分散到不同的对象中,这种分散会导致对象间的相互引用,提高了对象间的相互依赖。

    项目中如果对象比较多,并且各对象间的交互比较复杂时,逻辑就会比较混乱,如下图:


    屏幕快照 2016-12-21 上午12.58.22.png

    这个时候我们就要考虑中介者模式了:

    屏幕快照 2016-12-21 上午1.00.18.png

    中介者好比十字路口的交通警察,指挥者来往的车辆,如果我们想要控制某辆车的走向,只需要把我们的要求告诉交警就好,而不用直接去控制汽车。从而降低的代码的耦合度。

    So,以下情况可以使用中介者:

    1.对象间交互比较复杂,导致对象彼此相互依赖
    2.对象引用其他对象并与其交互,导致对象难以复用
    3.想要定制一个分布在多个类中的逻辑行为,有不想生成太多的子类

    But,中介者也是有缺点的:

    中介者内部封装了各对象间的交互的逻辑,所以自身会变得比较复杂,难以维护。

    二、何为中介者模式

    中介者就是用一个对象来封装一系列对象的交互行为,减少对象间的相互引用,从而降低项目的耦合度,而且可以独立的改变他们之间的交互。

    三、代码实现

    Mediator通过单利创建,因为程序中每个视图控制器都只允许有一个实例
    Mediator通过对根视图的引用来控制视图跳转,view跳转成功,会通过viewController属性返回

    1.中介者中的代码 .h文件

    #import <Foundation/Foundation.h>
    #import "RootViewController.h"
    #import "FirstViewController.h"
    #import "SecondViewController.h"
    
    typedef NS_ENUM(NSInteger, ButtonTag){
    
        FirstVCButtonTag = 1,
        SecondVCBUttonTag
    };
    
    @interface CoordinatingController : NSObject
    {
    
    }
    
    //  属性为 readonly, 避免在运行时被其他对象修改
    @property (readonly, nonatomic) RootViewController *rootVC;
    @property (readonly, nonatomic) UIViewController *viewController;
    
    //  采用单利,因为程序中每个视图控制器都只允许有一个实例
    + (CoordinatingController *)shareInterest;
    
    /*
        根据对象的tag来判断视图的跳转
        返回值为IBAction 可以在xib中关联控件使用
    */
    - (void)requestByObject:(id)object;
    
    @end
    
    

    .m文件

    
    @implementation CoordinatingController
    
    static CoordinatingController *Single = nil;
    
    + (CoordinatingController *)shareInterest{
    
        static dispatch_once_t onceToken;
        dispatch_once(&onceToken, ^{
            Single = [[CoordinatingController alloc]init];
        });
    
        return Single;
    }
    
    - (void)requestByObject:(id)object{
    
        if ([object isKindOfClass:[UIButton class]]) {
    
            switch ([(UIButton *)object tag]) {
                case FirstVCButtonTag:
                {
                    FirstViewController *firstVC = [[FirstViewController alloc]init];
    
                    [self.rootVC.navigationController pushViewController:firstVC animated:YES];
                     _viewController = firstVC;
                }
                    break;
                case SecondVCBUttonTag:{
    
                    SecondViewController *secondVC = [[SecondViewController alloc]init];
                    _viewController = secondVC;
                    [self.rootVC.navigationController pushViewController:secondVC animated:YES];
                }
                    break;
                default:{
                    
                    _viewController = _rootVC;
                    [self.rootVC.navigationController popToRootViewControllerAnimated:YES];
    
                }
                    break;
            }
        }else{
    
            RootViewController *root = [[RootViewController alloc]init];
            _rootVC = root;
            [self.rootVC.navigationController popToRootViewControllerAnimated:YES];
    
        }
    
    }
    
    

    2.根视图中

    @implementation RootViewController
    
    - (void)viewDidLoad {
        [super viewDidLoad];
        // Do any additional setup after loading the view from its nib.
    
        [[CoordinatingController shareInterest] setValue:self forKey:@"rootVC"];
    
    }
    
    - (IBAction)firstAction:(id)sender {
    
        [[CoordinatingController shareInterest]requestByObject:sender];
    }
    
    - (IBAction)secondAction:(id)sender {
    
         [[CoordinatingController shareInterest]requestByObject:sender];
    }
    
    @end
    

    相关文章

      网友评论

        本文标题:iOS设计模式之—中介者模式

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