设计模式 - 适配器

适配器也叫接口适配,其目的是为了减少不同类型数据之间的耦合度而进行的数据转换,有利于减少冗余代码。

源码如下:

ModelCell.h 与 ModelCell.m

//
//  ModelCell.h
//  Adapter
//
//  Created by YouXianMing on 15/1/6.
//  Copyright (c) 2015年 YouXianMing. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface ModelCell : UITableViewCell

@property (nonatomic, strong) UILabel *name;
@property (nonatomic, strong) UILabel *age;

@end
//
//  ModelCell.m
//  Adapter
//
//  Created by YouXianMing on 15/1/6.
//  Copyright (c) 2015年 YouXianMing. All rights reserved.
//

#import "ModelCell.h"

@implementation ModelCell

- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
    if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {

        self.name           = [[UILabel alloc] initWithFrame:CGRectMake(10, 10, 200, 18)];
        self.name.font      = [UIFont boldSystemFontOfSize:16.f];
        self.name.textColor = [UIColor redColor];
        [self addSubview:self.name];

        self.age           = [[UILabel alloc] initWithFrame:CGRectMake(10, 18 + 10, 200, 14)];
        self.age.font      = [UIFont italicSystemFontOfSize:12.f];
        self.age.textColor = [UIColor blackColor];
        [self addSubview:self.age];

    }

    return self;
}

@end

AdapterModel.h 与 AdapterModel.m

//
//  AdapterModel.h
//  Adapter
//
//  Created by YouXianMing on 15/1/6.
//  Copyright (c) 2015年 YouXianMing. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface AdapterModel : NSObject

@property (nonatomic, strong) NSString *name;
@property (nonatomic, strong) NSString *age;

/**
 *  根据字典来初始化
 *
 *  @param dic model字典
 *
 *  @return 实例对象
 */
+ (instancetype)adapterWithDictionary:(NSDictionary *)dic;

/**
 *  根据对象来初始化
 *
 *  @param dic model字典
 *
 *  @return 实例对象
 */
+ (instancetype)adapterWithObject:(id)object;

@end
//
//  AdapterModel.m
//  Adapter
//
//  Created by YouXianMing on 15/1/6.
//  Copyright (c) 2015年 YouXianMing. All rights reserved.
//

#import "AdapterModel.h"

@implementation AdapterModel

+ (instancetype)adapterWithDictionary:(NSDictionary *)dic {

    AdapterModel *model = nil;

    if (dic != nil && [dic isKindOfClass:[NSDictionary class]]) {
        model      = [AdapterModel new];
        model.name = dic[@"name"];
        model.age  = dic[@"age"];
    }

    return model;
}

+ (instancetype)adapterWithObject:(id)object {
    // 预留

    return [AdapterModel new];
}

@end

控制器源码:

//
//  ViewController.m
//  Adapter
//
//  Created by YouXianMing on 15/1/6.
//  Copyright (c) 2015年 YouXianMing. All rights reserved.
//

#import "ViewController.h"
#import "ModelCell.h"
#import "AdapterModel.h"

static NSString *ModelCellFlag = @"ModelCell";

@interface ViewController ()<UITableViewDataSource, UITableViewDelegate>

@property (nonatomic, strong) UITableView     *tableView;
@property (nonatomic, strong) NSMutableArray  *dataArray;

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];

    // 初始化数据源
    [self createDataSource];

    // 初始化tableView
    [self createTableView];
}

#pragma mark - 数据源相关
- (void)createDataSource {
    self.dataArray = [NSMutableArray array];

    [self.dataArray addObject:[AdapterModel adapterWithDictionary:@{@"name": @"FireEmblem",
                                                                    @"age" : @"40"}]];

    [self.dataArray addObject:[AdapterModel adapterWithDictionary:@{@"name": @"YouXianMing",
                                                                    @"age" : @"27"}]];

    [self.dataArray addObject:[AdapterModel adapterWithDictionary:@{@"name": @"QiuLiang",
                                                                    @"age" : @"28"}]];

    [self.dataArray addObject:[AdapterModel adapterWithDictionary:@{@"name": @"PingKang",
                                                                    @"age" : @"25"}]];
}
#pragma mark - tableView相关
- (void)createTableView {
    self.tableView            = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];
    self.tableView.delegate   = self;
    self.tableView.dataSource = self;
    [self.tableView registerClass:[ModelCell class] forCellReuseIdentifier:ModelCellFlag];
    [self.view addSubview:self.tableView];
}

#pragma mark row数量
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return self.dataArray.count;
}
#pragma mark cell初始化
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    ModelCell *cell     = [tableView dequeueReusableCellWithIdentifier:ModelCellFlag];

    AdapterModel *model = self.dataArray[indexPath.row];

    cell.name.text      = model.name;
    cell.age.text       = model.age;

    return cell;
}
#pragma mark cell高度
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    return 50;
}

@end

以下是核心代码处:

时间: 2024-10-09 10:28:14

设计模式 - 适配器的相关文章

设计模式——适配器

又分为三种: 类的适配器模式: package designpattern.structure.adapter.classadapter; public interface ITarget { public void method1(); public void method2(); } package designpattern.structure.adapter.classadapter; public class Source { public void method1() { Syste

iOS常用设计模式——适配器Adapter

1.什么是适配器设计模式(Adapter)   (What) 适配器设计模式是一种结构型设计模式, 它的作用是把一个类的接口转换成客户希望的另外一个接口,从而使得原本由于接口不兼容而不能一起工作的那些类可以一起工作. 适配器设计模式有两种实现方式:1.)通过继承来实现两个接口,叫类适配器: 2.)通过引用来避免对象适配器继承被适配对象,叫对象适配器. 图1: 类适配器的UML图 在类适配器中,Adapter与Adaptee之间的关系是继承,我们通过继承来实现对Adaptee中+ specific

ABAP设计模式——适配器

计算机科学中的大多数问题都可以通过增加一层间接性来解决.  ——David Wheeler 适配器模式(Adapter Design Pattern),是一个广泛应用于真实世界和面向对象编程语言的设计模式.基于面向对象的标准SAP程序中同样很多地使用了适配器模式. 适配器是什么? 适配器把因为不同的“接口”而不兼容的对象转换(为兼容的).通过实现适配器,我们可以让一些原本不能共同工作的类共同工作. 有时,我们有一个客户端,它希望对象只有一个确定的接口.还有一个对象,他能满足功能上的要求,但是两个

iOS设计模式 - 适配器

效果 说明 1. 为了让客户端尽可能的通用,我们使用适配器模式来隔离客户端与外部参数的联系,只让客户端与适配器通信. 2. 本教程实现了适配器模式的类适配器与对象适配器两种模式,各有优缺点. 3. 如果对面向对象基本原理以及设计模式基本原理不熟悉,本教程会变得难以理解. 源码 https://github.com/YouXianMing/AdapterPattern // // BusinessCardView.h // Adapter // // Created by YouXianMing

读书笔记之设计模式-适配器和外观模式

结构型:Adapter与Facade(适配器和外观模式) 一般作为阅读材料,首先想要明确的是我现在了解的设计模式的初衷,即为了解决什么问题. 适配器,如果有买过港版Iphone在内地使用的人应该会有三角大插头必须接一个转换器才能在一般的插座上使用的情况,当然这只是比较直观的感受.其实我们平时用的手机充电器都是属于适配器,试想如果我们没有这个充电器,我们如何利用普通插座给手机充电? 适配器的定义:将手头上所持有的接口转换成我们需要的接口(业务场景:经常是为了适配旧程序或者对接2套系统的时候使用,当

swift 之设计模式 适配器

大学的时候,有一个<近世代数>的教授,他上课从来不看课本,并且也不按课本来讲解课程,但是他讲的东西比书本深刻形象(幽默,口才杠杠的),有层次感,除了授业,他还经常给我讲一些为人处世,做学问的方法[他是我尊敬的老师之一].  学过这门课的人都知道这门课全是理论,群论,环,域等,各种理论证明,各种装逼各种飞.  现在课本上的还回去的基本上还回去了,留下更多的就是他给我讲的一些方法,在这里引入一下: 掌握一个新概念: 1. 背景引入,为什么会有这个概念产生 2. 是什么?拆分概念的各种条件,名词,结

设计模式--适配器(Adapter)模式

今天学习另一个设计模式,适配器(Adapter)模式,这是一个共同方向,但有特殊要求,就应用到此设计模式.写到这里,想起很久以前,有写过一篇<ASP.NET的适配器设计模式(Adapter)>http://www.cnblogs.com/insus/archive/2013/02/04/2891426.html ,但是似乎没有适配器的味道. 比如一个系统,开发时设计好各种权限,但某一种,客户提出要求,需要一个特殊的权限来操作.只好开发一个适配器来让其有这个特殊操作权限. 用代码来举例吧. 先定

设计模式适配器

适配器模式 设计原则:遵循开闭原则.体现功能复用常用场景:需要使用一个类的功能,但是该类的接口不符合使用场合要求的接口,可使用定制适配器,又或者是有一个接口定义的行为过多,则可以定义一个缺省适配器,让子类选择性的覆盖适配器的方法使用概率:40%复杂度:中变化点:无选择关键点:定制适配器的选择关键点在于是否有更加优良的替代方案,缺省适配器的选择关键点在于接口中的方法是否可以不全部提供,且都有缺省方案逆鳞:无相关设计模式装饰器模式:对于适配器模式中的定制适配器与装饰器模式,二者都是使用组合加继承的手

设计模式——适配器(Adapter)模式

概述 什么是适配器?在我们生活中的适配器比如插头转换器(中标转美标).USB接口转换器(type-c转苹果),电脑电源适配器(交流电转低电压直流)等.像这种将两者有差异的东西通过适配器使他们成为相互适合的东西.在程序世界中,经常存在现有的程序无法直接使用,需要做适当的变换后才能使用的情况,这种用于填补“现有程序”和“所需程序”之间差异的设计模式就是适配器(Adapter)模式.适配器模式有类适配器模式和对象适配器模式两种,前者使用继承,后者使用组合,所以后者比较灵活,推荐使用.下面通过实例对这两

Java设计模式 —— 适配器(Adapter)

# 标签: 读博客 Adapter Pattern / Wrapper Pattern 什么时候需要适配,需要包装?肯定是你给我的,现有的服务提供的不好用,我才需要给你进行一下包装再用,或者适配之后再用. Android中,数据的list能直接放到view上面么?不能吧,所以搞了个adapter适配一下,变成了一个封装类,这个封装类是可以安在view上,或者说给view提供数据源的. 你笔记本电脑需要12V的直流电,但是你家里只有220V交流电或者110V交流电,所提供的,并不是所需的,不能直接