IOS 代理方式实现实例详解
2019/7/9 23:06:03
本文主要是介绍IOS 代理方式实现实例详解,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
IOS 代理方式实现
在客户端开发中,经常用到通知、代理、block来实现各个页面之间关联。通知,以一直“盲”的方式实现传递。 代理、block
可以很明确的知道各个界面之间的关联关系。以代理为例,一般的做法如下 :
DesViewController *des = [[DesViewController alloc] init];des.delegate = self;[self.navigationController pushViewController:des animated:YES];
这种情况下,一般两个界面是有一定的关系的,例如:从A界面跳转到B界面或者a的视图是A控制器之间一部分。但是,如果没有联系的怎么处理呢,例如: A界面需要根据用户登录状态来展示不同的数据,或者展示不同的界面情况:
实战:
思路: 创建一个管理类类处理,设置好对应的代理方法,然后再需要的时候,添加 或者 删除对应的代理方法即可。
核心代码:
.h文件
//// RSLoginService.h// iOSDelegate//// Created by admin on 2016/11/6.// Copyright © 2016年 Reading. All rights reserved. //#import <Foundation/Foundation.h>@protocol UserLoginStatusDelegate <NSObject> - (void)userDidLoginIn; - (void)userWillLoginOut; @end@interface RSLoginService : NSObject+ (instancetype)sharedInstance; @property (nonatomic, strong) NSMutableSet *delegates; - (void)onWillLoginOut; - (void)onDidLoginIn; - (void)addDelegate:(id<UserLoginStatusDelegate>) delegate; - (void)removeDelegate:(id<UserLoginStatusDelegate>) delegate;@end
.m文件
//// RSLoginService.m// iOSDelegate//// Created by admin on 2016/11/6. // Copyright © 2016年 Reading. All rights reserved. //#import "RSLoginService.h"@implementation RSLoginService+ (instancetype)sharedInstance{ static id instance; static dispatch_once_t onceToken; dispatch_once(&onceToken, ^{ instance = [[RSLoginService alloc] init]; }); return instance;}- (void)onWillLoginOut{ // do something you need to do before Login out [self.delegates makeObjectsPerformSelector:@selector(userWillLoginOut)];}- (void)onDidLoginIn{ // do something you need to do after Login In [self.delegates makeObjectsPerformSelector:@selector(userDidLoginIn)];}- (void)addDelegate:(id<UserLoginStatusDelegate>) delegate{ if (![self.delegates containsObject:delegate]) { [self.delegates addObject:delegate]; } }- (void)removeDelegate:(id<UserLoginStatusDelegate>) delegate{ if (![self.delegates containsObject:delegate]) { [self.delegates removeObject:delegate]; }}- (NSMutableSet *)delegates{ if (!_delegates) { _delegates = [NSMutableSet set]; } return _delegates;}@end
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
这篇关于IOS 代理方式实现实例详解的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-12Axios库资料:新手入门必读教程
- 2024-11-11Axios库项目实战:新手入门教程
- 2024-09-29Axios库教程:初学者必备指南
- 2024-08-29Axios库资料:新手入门指南与基本使用教程
- 2024-03-14system bios shadowed
- 2024-03-14gabios
- 2024-02-07iOS应用提交上架的最新流程
- 2024-02-06打包 iOS 的 IPA 文件
- 2023-12-07uniapp打包iOS应用并通过审核:代码混淆的终极解决方案 ?
- 2023-11-25uniapp IOS从打包到上架流程(详细简单) 原创