iOS 桥接模式

作者: 印林泉 | 来源:发表于2017-03-07 23:18 被阅读214次
  • 桥接模式
    抽象出层次结构。
    上层抽象接口的职能,实现上层抽象接口的职能,层级间的通信协议(可以抽象为接口)。
    桥接模式的目的,就是把抽象层次结构从具体的实现中分离出来,使其能够独立变更。抽象层次定义了供客户端使用的上层抽象接口。实现结构定义了供抽象层使用的底层接口。实现类的引用被封装到控制类抽象层的实例中,桥接就形成了。

  • 应用,使用场景
    游戏机模拟器、H5混编解决方案

游戏机系统抽象类(控制类/协议)

//
//  AbstractSystem.h
//  LearnBridge
//
//  Created by 印林泉 on 2017/3/7.
//  Copyright © 2017年 ylq. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "AbstractImplementor.h"

/**
 控制类
 */
@interface AbstractSystem : NSObject

@property (strong, nonatomic)AbstractImplementor *implementor;

/**
 加载系统
 */
- (void)loadSystem;

- (void)commandUp;
- (void)commandDown;
- (void)commandLeft;
- (void)commandRight;
- (void)commandA;
- (void)commandB;

@end
//
//  AbstractSystem.m
//  LearnBridge
//
//  Created by 印林泉 on 2017/3/7.
//  Copyright © 2017年 ylq. All rights reserved.
//

#import "AbstractSystem.h"

@implementation AbstractSystem

- (void)loadSystem {
    
}

- (void)commandUp {
    [self.implementor loadCommand:kUp];
}

- (void)commandDown {
    [self.implementor loadCommand:kDown];
}

- (void)commandLeft {
    [self.implementor loadCommand:kLeft];
}

- (void)commandRight {
    [self.implementor loadCommand:kRight];
}

- (void)commandA {
    [self.implementor loadCommand:kA];
}

- (void)commandB {
    [self.implementor loadCommand:kB];
}

@end

游戏机执行抽象类(执行类/协议)

//
//  AbstractImplementor.h
//  LearnBridge
//
//  Created by 印林泉 on 2017/3/7.
//  Copyright © 2017年 ylq. All rights reserved.
//

#import <Foundation/Foundation.h>

typedef enum : NSInteger {
    kUp,
    kDown,
    kLeft,
    kRight,
    kA,
    kB,
    kO,
    kX,
} ECommandType;
/**
 执行类
 */
@interface AbstractImplementor : NSObject

- (void)loadCommand:(ECommandType)command;

@end
//
//  AbstractImplementor.m
//  LearnBridge
//
//  Created by 印林泉 on 2017/3/7.
//  Copyright © 2017年 ylq. All rights reserved.
//

#import "AbstractImplementor.h"

@implementation AbstractImplementor

- (void)loadCommand:(ECommandType)command {
    
}

@end

GBA游戏机系统类

//
//  GBASystem.h
//  LearnBridge
//
//  Created by 印林泉 on 2017/3/7.
//  Copyright © 2017年 ylq. All rights reserved.
//

#import "AbstractSystem.h"

@interface GBASystem : AbstractSystem

@end
//
//  GBASystem.m
//  LearnBridge
//
//  Created by 印林泉 on 2017/3/7.
//  Copyright © 2017年 ylq. All rights reserved.
//

#import "GBASystem.h"

@implementation GBASystem

- (void)loadSystem {
    NSLog(@"GBASystem");
}

@end

GBA执行类

//
//  GBAImplementor.h
//  LearnBridge
//
//  Created by 印林泉 on 2017/3/7.
//  Copyright © 2017年 ylq. All rights reserved.
//

#import "AbstractImplementor.h"

@interface GBAImplementor : AbstractImplementor

@end
//
//  GBAImplementor.m
//  LearnBridge
//
//  Created by 印林泉 on 2017/3/7.
//  Copyright © 2017年 ylq. All rights reserved.
//

#import "GBAImplementor.h"

@implementation GBAImplementor

- (void)loadCommand:(ECommandType)command {
    switch (command) {
        case kUp:
            NSLog(@"GBA up");
            break;
        case kDown:
            NSLog(@"GBA down");
            break;
        case kLeft:
            NSLog(@"GBA left");
            break;
        case kRight:
            NSLog(@"GBA right");
            break;
        case kA:
            NSLog(@"GBA A");
            break;
        case kB:
            NSLog(@"GBA B");
            break;
        default:
            NSLog(@"GBA none");
            break;
    }
}

@end

PSP游戏机系统类(扩展X、O)

//
//  PSPSystem.h
//  LearnBridge
//
//  Created by 印林泉 on 2017/3/7.
//  Copyright © 2017年 ylq. All rights reserved.
//

#import "AbstractSystem.h"

@interface PSPSystem : AbstractSystem

- (void)commandX;
- (void)commandO;

@end
//
//  PSPSystem.m
//  LearnBridge
//
//  Created by 印林泉 on 2017/3/7.
//  Copyright © 2017年 ylq. All rights reserved.
//

#import "PSPSystem.h"

@implementation PSPSystem

- (void)loadSystem {
    NSLog(@"PSPSystem");
}

- (void)commandX {
    [self.implementor loadCommand:kX];
}

- (void)commandO {
    [self.implementor loadCommand:kO];
}

@end

PSP执行类

//
//  PSPImplementor.h
//  LearnBridge
//
//  Created by 印林泉 on 2017/3/7.
//  Copyright © 2017年 ylq. All rights reserved.
//

#import "AbstractImplementor.h"

@interface PSPImplementor : AbstractImplementor

@end
//
//  PSPImplementor.m
//  LearnBridge
//
//  Created by 印林泉 on 2017/3/7.
//  Copyright © 2017年 ylq. All rights reserved.
//

#import "PSPImplementor.h"

@implementation PSPImplementor

- (void)loadCommand:(ECommandType)command {
    switch (command) {
        case kUp:
            NSLog(@"PSP up");
            break;
        case kDown:
            NSLog(@"PSP down");
            break;
        case kLeft:
            NSLog(@"PSP left");
            break;
        case kRight:
            NSLog(@"PSP right");
            break;
        case kA:
            NSLog(@"PSP A");
            break;
        case kB:
            NSLog(@"PSP B");
            break;
        case kX:
            NSLog(@"PSP X");
            break;
        case kO:
            NSLog(@"PSP O");
            break;
        default:
            NSLog(@"PSP none");
            break;
    }
}

@end

应用

//
//  ViewController.m
//  LearnBridge
//
//  Created by 印林泉 on 2017/3/7.
//  Copyright © 2017年 ylq. All rights reserved.
//

#import "ViewController.h"
#import "GBASystem.h"
#import "GBAImplementor.h"
#import "PSPSystem.h"
#import "PSPImplementor.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    AbstractSystem *gbaSystem = [[GBASystem alloc] init];
    gbaSystem.implementor = [[GBAImplementor alloc] init];
    [gbaSystem loadSystem];
    [gbaSystem commandUp];
    
    PSPSystem *pspSystem = [[PSPSystem alloc] init];
    pspSystem.implementor = [[PSPImplementor alloc] init];
    [pspSystem loadSystem];
    [pspSystem commandX];
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end

相关文章

  • iOS桥接模式

    桥接模式 桥接(Bridge Pattern)是用于把抽象化与实现化解耦,使得二者可以独立变化。这种类型的设计模式...

  • iOS 桥接模式

    生活中的场景: 就拿汽车在路上行驶的来说。即有小汽车又有公共汽车,它们都不但能在市区中的公路上行驶,也能在高速公路...

  • iOS 桥接模式

    桥接模式抽象出层次结构。上层抽象接口的职能,实现上层抽象接口的职能,层级间的通信协议(可以抽象为接口)。桥接模式的...

  • iOS设计模式-桥接模式

    问题: 假如:我们需要大中小3种型号的画笔,能够绘制12种不同的颜色,如果使用蜡笔,需要准备3x12=36支,但如...

  • iOS与桥接模式

    首先,什么是桥接模式呢?想到公司有个面试题是有关花和蜜蜂的,花开蜜蜂来采蜜,花谢蜜蜂回巢。把这个场景改造下,来说明...

  • 【iOS开发】iOS中的桥接

    ios-关于桥接 iOS-关于桥接Ios中的桥接 关键点 iOSSDK中的框架做分层处理 CoreFoundati...

  • 设计模式-桥接模式

    设计模式-桥接模式 定义 桥接模式(Bridge Pattern)也称为桥梁模式、接口(Interface)模式或...

  • iOS设计模式(二)桥接模式

    桥接模式 1.定义将抽象部分与实现部分分离,使它们都可以独立的变化.2.原理抽象层与实现层相分离,抽象层定义了供客...

  • iOS设计模式之桥接模式

    桥接模式 1、什么是桥接模式 将抽象部分与实现部分分离,使它们都可以独立的变化。 桥接模式一共有两个角色: 抽象角...

  • 结构型模式:桥接模式

    文章首发:结构型模式:桥接模式 七大结构型模式之二:桥接模式。 简介 姓名 :桥接模式 英文名 :Bridge P...

网友评论

    本文标题:iOS 桥接模式

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