博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
代理设计模式简单格式(备忘)
阅读量:5327 次
发布时间:2019-06-14

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

A控制器充当B控制器的代理:(B页面的数据反传给A页面进行数据的更新,一般A跳转到B的这种情况下需要使用代理方法)

B控制器.h文件中的代码如下:

#import 
@protocol SearchDestinationDelegate
- (void)searchDestinationWithLocation:(CLLocationCoordinate2D)secrchLocationCoordinate;@end@interface SearchDestinationVC : UIViewController@property (nonatomic, weak) id
searchLocationDelegate;@end

B控制器.m文件中的代码如下:

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{            if ([self.searchLocationDelegate respondsToSelector:@selector(searchDestinationWithLocation:)]) {        [self.searchLocationDelegate searchDestinationWithLocation:self.endUserLocation];    }    [self.navigationController popViewControllerAnimated:YES];}

A页面需要实现相应的代理,和代理方法,.m文件中的代码如下

//跳转到B页面的时候,让A页面充当B页面的代理
SearchDestinationVC *searchVC = [[SearchDestinationVC alloc]init]; searchVC.searchLocationDelegate = self; [self.navigationController pushViewController:searchVC animated:NO];//实现代理中的方法-(void)searchDestinationWithLocation:(CLLocationCoordinate2D)secrchLocationCoordinate{ //拿到B页面穿过来的数据,在A页面进行需要的设置}

 

转载于:https://www.cnblogs.com/yipingios/p/5615443.html

你可能感兴趣的文章
python全栈 计算机硬件管理 —— 硬件
查看>>
大数据学习
查看>>
简单工厂模式
查看>>
Delphi7编译的程序自动中Win32.Induc.a病毒的解决办法
查看>>
Objective-C 【关于导入类(@class 和 #import的区别)】
查看>>
倍福TwinCAT(贝福Beckhoff)常见问题(FAQ)-点击运行按钮进入到运行状态报错Error starting TwinCAT System怎么办 AdsWarning1823怎么办...
查看>>
【转】javascript 中的很多有用的东西
查看>>
Centos7.2正常启动关闭CDH5.16.1
查看>>
Android 监听返回键、HOME键
查看>>
Android ContentProvider的实现
查看>>
sqlserver 各种判断是否存在(表名、函数、存储过程等)
查看>>
给C#学习者的建议 - CLR Via C# 读后感
查看>>
Recover Binary Search Tree
查看>>
Java 实践:生产者与消费者
查看>>
[转]IOCP--Socket IO模型终结篇
查看>>
js 获取视频的第一帧
查看>>
各种正则验证
查看>>
观察者模式(Observer)
查看>>
python中numpy.r_和numpy.c_
查看>>
egret3D与2D混合开发,画布尺寸不一致的问题
查看>>