博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ios 异步回调选择
阅读量:6001 次
发布时间:2019-06-20

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

hot3.png

异步调用,比较常用,比如网络请求等,都需要等别的模块处理完成后,我们这边再进行处理,然而外部什么时候能处理完是一个未知数,我们不能一直在等待,所以就需要做异步回调了

  1. handler-block(块)

  2. delegate(协议)

  3. notification(通知)

  4. addTarget (事件)

目前我就知道这些方法,其实原理都差不多,都是使用观察者模式,下面一一分析和使用demo:

1.handler-block(块)

block方式是比较常适用于网络请求的回调处理的

特点:就是一次调用一次反馈,一对一的模式,而且必有反馈,无论失败还是成功、易用易读

typedef void (^choiceCompletionBlock)(int index);- (void)showTipAlert:(NSString *)message completion:(choiceCompletionBlock)completion;[[KSAlertView shareAlertView] showTipAlert:nameErrorInfo completion:^(int index) {            [_nameField becomeFirstResponder];        }];

2.delegate(协议)

delegate是ios库比较喜欢用的,如UITableView、UIAlertView等

特点:是使用模块或者类会产生多种事件或数据,外部可以选择接受、处理或者无视、内传数据、结构性好

@protocol HotWorkConrtentItemDelegate 
-(void)didSelectWithIndex:(NSInteger)index section:(NSInteger)section;@endif (_delegate && [_delegate respondsToSelector:@selector(didSelectWithIndex:section:)]) {        [_delegate didSelectWithIndex:_hotWorkIndex section:_section];    }

3.notification(通知)

notification是有NSNotificationCenter库使用,常用于公用库的反馈

特点:一对多的模式,跨度无限制,一个调用者,能有多个无关的模块接收、灵活

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(orientationChanged:) name:UIDeviceOrientationDidChangeNotification object:nil];[[NSNotificationCenter defaultCenter] removeObserver:self name:UIKeyboardWillShowNotification object:nil];

4.addTarget (事件)

addTarget常用于UIControl控件上的事件反馈

特点:持久注册、特殊反馈、多对多、好处理

[_deletePhotoBtn addTarget:self action:@selector(deletePhotoBtnClick:) forControlEvents:UIControlEventTouchUpInside];

转载于:https://my.oschina.net/iq19900204/blog/411818

你可能感兴趣的文章
Sqlite插入或更新
查看>>
Jenkins添加Windows自动化构建方案
查看>>
调用天气预报接口
查看>>
node.js中使用http模块创建服务器和客户端
查看>>
LeetCode 453. Minimum Moves to Equal Array Elements C#
查看>>
Away3D基础教程(六):支持双面交互的PlaneGeometry
查看>>
(十五)Centos之安装jdk
查看>>
51nod 最长公共子序列+输出路径
查看>>
RISC-V: custom instruction and its simulation(转)
查看>>
博客园个性时钟,Play with me !!!
查看>>
HDU 5366 The mook jong
查看>>
Unity ScriptableObject自定义属性显示
查看>>
【开源】简单4步搞定QQ登录,无需什么代码功底【无语言界限】
查看>>
ORACLE内存管理之ASMM AMM
查看>>
移动前端常用meta标签
查看>>
非结构化数据与结构化数据提取---多线程爬虫案例
查看>>
splay版
查看>>
unity 打包编译记录
查看>>
CSS知识总结(四)
查看>>
软件工程第一次作业
查看>>