博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS设计模式 - 外观
阅读量:5037 次
发布时间:2019-06-12

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

iOS设计模式 - 外观

 

原理图

 

 

说明

1. 当客服端需要使用一个复杂的子系统(子系统之间关系错综复杂),但又不想和他们扯上关系时,我们需要单独的写出一个类来与子系统交互,隔离客户端与子系统之间的联系,客户端只与这个单独写出来的类交互

2. 外观模式实质为为系统中的一组接口提供一个统一的接口,外观定义了一个高层接口,让子系统易于使用

 

源码

////  ShapeMaker.h//  FacadePattern////  Created by YouXianMing on 15/7/28.//  Copyright (c) 2015年 YouXianMing. All rights reserved.//#import 
#import "Shape.h"#import "Circle.h"#import "Rectangle.h"#import "Square.h"@interface ShapeMaker : NSObject+ (void)drawCircleAndRectangle;+ (void)drawCircleAndSquare;+ (void)drawAll;@end
////  ShapeMaker.m//  FacadePattern////  Created by YouXianMing on 15/7/28.//  Copyright (c) 2015年 YouXianMing. All rights reserved.//#import "ShapeMaker.h"@implementation ShapeMaker+ (void)drawCircleAndRectangle {    Shape *circle    = [Circle new];    Shape *rectangle = [Rectangle new];        [circle draw];    [rectangle draw];    NSLog(@"\n");}+ (void)drawCircleAndSquare {    Shape *circle    = [Circle new];    Shape *square    = [Square new];        [circle draw];    [square draw];    NSLog(@"\n");}+ (void)drawAll {    Shape *circle    = [Circle new];    Shape *rectangle = [Rectangle new];    Shape *square    = [Square new];        [circle draw];    [rectangle draw];    [square draw];    NSLog(@"\n");}@end
////  Shape.h//  FacadePattern////  Created by YouXianMing on 15/7/28.//  Copyright (c) 2015年 YouXianMing. All rights reserved.//#import 
@interface Shape : NSObject/** * 绘制 */- (void)draw;@end
////  Shape.m//  FacadePattern////  Created by YouXianMing on 15/7/28.//  Copyright (c) 2015年 YouXianMing. All rights reserved.//#import "Shape.h"@implementation Shape- (void)draw {    // 由子类重写}@end

 

分析

详细对比示意图

 

转载于:https://www.cnblogs.com/YouXianMing/p/4684233.html

你可能感兴趣的文章
类指针
查看>>
css修改滚动条样式
查看>>
2018.11.15 Nginx服务器的使用
查看>>
Kinect人机交互开发实践
查看>>
百度编辑器UEditor ASP.NET示例Demo 分类: ASP.NET...
查看>>
JAVA 技术类分享(二)
查看>>
android客户端向服务器发送请求中文乱码的问
查看>>
UOJ#220. 【NOI2016】网格 Tarjan
查看>>
Symfony翻译教程已开课
查看>>
Python模块之pickle(列表,字典等复杂数据类型与二进制文件的转化)
查看>>
通过数据库表反向生成pojo类
查看>>
css_去掉默认样式
查看>>
TensorFlow2.0矩阵与向量的加减乘
查看>>
NOIP 2010题解
查看>>
javascript中的each遍历
查看>>
String中各方法多数情况下返回新的String对象
查看>>
浅谈tcp粘包问题
查看>>
UVA11524构造系数数组+高斯消元解异或方程组
查看>>
排序系列之——冒泡排序、插入排序、选择排序
查看>>
爬虫基础
查看>>