快好知 kuaihz

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@protocol UserLoginStatusDelegate- (void)userDidLoginIn;- (void)userWillLoginOut;@end@interface RSLoginService : NSObject+ (instancetype)sharedInstance;@property (nonatomic, strong) NSMutableSet *delegates;- (void)onWillLoginOut;- (void)onDidLoginIn;- (void)addDelegate:(id) delegate;- (void)removeDelegate:(id) 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) delegate{ if (![self.delegates containsObject:delegate]) { [self.delegates addObject:delegate]; }}- (void)removeDelegate:(id) delegate{ if (![self.delegates containsObject:delegate]) { [self.delegates removeObject:delegate]; }}- (NSMutableSet *)delegates{ if (!_delegates) { _delegates = [NSMutableSet set]; } return _delegates;}@end

本站资源来自互联网,仅供学习,如有侵权,请通知删除,敬请谅解!
搜索建议:IOS代理方式  方式  方式词条  代理  代理词条  IOS  IOS词条  IOS代理方式词条  
综合

 小米3音乐设置技巧

小米3音乐设置技巧小米3音乐设置技巧,小米3音乐播放器使用技巧,教你如何新手玩转小米手机3高级音乐设置。小米3除了在硬件配置和价格方面吸引人眼球,它在音乐方面也...(展开)

综合

 华为p9照相技巧

华为p9照相技巧华为P9上市已久有一段时间了,凭借时尚外观、双摄像头、高端性能,至今已久有着不错的关注度。以下是小编整理的华为p9照相技巧,欢迎阅读。P9拍照的...(展开)