IOS笔记044-通知和代理(观察者模式和代理模式)

 

处理文本输入框的输入事件,单击文本输入框后要弹出键盘。

弹出键盘有两种实现方式:一种代理,一种通知。也就是对应的(观察者模式和代理模式)。

 

1、通知

1.1、准备工作

每一个应用程序都有一个通知中心(NSNotificationCenter)实例,专门负责协助不同对象之间的消息通信。

任何一个对象都可以向通知中心发布通知(NSNotification),描述自己在做什么。

其他感兴趣的对象(Observer)可以申请在某个特定通知发布时(或在某个特定的对象发布通知时)收到这个通知。

  通知中心(NSNotificationCenter)提供了相应的方法来帮助发布通知
        - (void)postNotification:(NSNotification *)notification;
        发布一个notification通知,可在notification对象中设置通知的名称、通知发布者、额外信息等

- (void)postNotificationName:(NSString *)aName object:(id)anObject;
        发布一个名称为aName的通知,anObject为这个通知的发布者

- (void)postNotificationName:(NSString *)aName object:(id)anObject userInfo:(NSDictionary *)aUserInfo;
       发布一个名称为aName的通知,anObject为这个通知的发布者,aUserInfo为额外信息

  通知中心(NSNotificationCenter)提供了方法来注册一个监听通知的监听器(Observer)
        - (void)addObserver:(id)observer selector:(SEL)aSelector name:(NSString *)aName object:(id)anObject;
            observer:监听器,即谁要接收这个通知
            aSelector:收到通知后,回调监听器的这个方法,并且把通知对象当做参数传入
            aName:通知的名称。如果为nil,那么无论通知的名称是什么,监听器都能收到这个通知
            anObject:通知发布者。如果为anObject和aName都为nil,监听器都收到所有的通知

- (id)addObserverForName:(NSString *)name object:(id)obj queue:(NSOperationQueue *)queue usingBlock:(void (^)(NSNotification *note))block;
            name:通知的名称
            obj:通知发布者
            block:收到对应的通知时,会回调这个block
            queue:决定了block在哪个操作队列中执行,如果传nil,默认在当前操作队列中同步执行

  通知中心不会保留(retain)监听器对象,在通知中心注册过的对象,必须在该对象释放前取消注册。否则,当相应的通知再次出现时,通知中心仍然会向该监听器发送消息。因为相应的监听器对象已经被释放了,所以可能会导致应用崩溃。

通知中心提供了相应的方法来取消注册监听器
        - (void)removeObserver:(id)observer;
        - (void)removeObserver:(id)observer name:(NSString *)aName object:(id)anObject;

实现过程:先注册消息 postNotificationName ,然后在响应的方法的接收消息 addObserver,最后实现接收消息的方法

  因为在系统中又定义好的键盘处理通知,所以直接进行监听就行了。

 UIKIT_EXTERN NSString *const UIKeyboardWillShowNotification; // 即将弹出

 UIKIT_EXTERN NSString *const UIKeyboardDidShowNotification; // 显示

 UIKIT_EXTERN NSString *const UIKeyboardWillHideNotification;   //即将隐藏

 UIKIT_EXTERN NSString *const UIKeyboardDidHideNotification; // 隐藏       

1.2、实现过程

//  1、通过通知监听键盘出现消息

// 添加监听器,监听键盘弹出

[[NSNotificationCenter defaultCenter] addObserver:selfselector:@selector(keyboardComeout:) name:UIKeyboardWillShowNotificationobject:nil];

// 添加监听器,监听键盘退出

[[NSNotificationCenter defaultCenter] addObserver:selfselector:@selector(keyboardGoaway:) name:UIKeyboardWillHideNotificationobject:nil];

      

// 2、响应通知的方法,显示键盘

- (void)keyboardComeout:(NSNotification *)note

{

NSLog(@"keyboardComeout--\n%@",note);

// 取出消息中键盘出现后的最终位置,要将字典对象转换成CGRect

CGRect rect = [note.userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue];

self.viewBotom.constant = rect.size.height;

// 取出键盘弹出所需要的时间

double animateTime = [note.userInfo[UIKeyboardAnimationDurationUserInfoKey] doubleValue];

[UIViewanimateWithDuration:animateTime animations:^{

[self.viewlayoutIfNeeded];

}];

/**

*   NSNotification 内部信息

NSConcreteNotification 0x7f896bebf4d0 {name = UIKeyboardWillShowNotification; userInfo = {

UIKeyboardAnimationCurveUserInfoKey = 7;

UIKeyboardAnimationDurationUserInfoKey = "0.25";

UIKeyboardBoundsUserInfoKey = "NSRect: {{0, 0}, {375, 225}}";

UIKeyboardCenterBeginUserInfoKey = "NSPoint: {187.5, 779.5}";

UIKeyboardCenterEndUserInfoKey = "NSPoint: {187.5, 554.5}";

UIKeyboardFrameBeginUserInfoKey = "NSRect: {{0, 667}, {375, 225}}";

UIKeyboardFrameEndUserInfoKey = "NSRect: {{0, 442}, {375, 225}}";

}}

*/

}

/**

*  3、开始滚动界面后隐藏键盘

*/

- (void)scrollViewWillBeginDragging:(UIScrollView *)scrollView

{

//退出键盘

// NSLog(@"scrollViewWillBeginDragging--");

//[self.view endEditing:YES];//方法1

[self.textField resignFirstResponder]; // 方法2:谁响应的键盘,谁就可以调用这个方法退出键盘(resignFirstResponder)

}

// 隐藏键盘

- (void)keyboardGoaway:(NSNotification *)note

{

NSLog(@"keyboardGoaway--\n%@",note);

self.viewBotom.constant = 0;

//取出键盘弹出所需要的时间

double animateTime = [note.userInfo[UIKeyboardAnimationDurationUserInfoKey] doubleValue];

[UIViewanimateWithDuration:animateTime animations:^{

[self.viewlayoutIfNeeded];

}];

}

        看弹出效果,实际效果是有动画的,过渡更好。

1.3、键盘弹出后还要对真个View进行上移,隐藏后下移

  这里使用更新控件的约束来实现view的移动。

如下属性:

@property (weak, nonatomic) IBOutletNSLayoutConstraint *viewBotom;

然后控制约束的constant值,就可以实现view的移动。

设置方法方法:

// 取出消息中键盘出现后的最终位置,要将字典对象转换成CGRect

CGRect rect = [note.userInfo[UIKeyboardFrameEndUserInfoKey] CGRectValue];

self.viewBotom.constant = rect.size.height;

1.4、给UITextField 两边添加一个间距

直接使用其自带的功能即可

// 设置文本框左边的内容

UIView *leftView = [[UIView alloc] init];

leftView.frame = CGRectMake(0, 0, 10, 0);

self.messageField.leftView = leftView;

self.messageField.leftViewMode = UITextFieldViewModeAlways;

// 右边间距

self.messageField.rightView = leftView;

self.messageField.rightViewMode = UITextFieldViewModeAlways;

1.5、使用完毕后要手动删除监听器

- (void)dealloc

{

// 使用完毕后要手动移除监听对象

[[NSNotificationCenter defaultCenter] removeObserver:self];

}

2、代理模式

2.1、使用注意事项

1、在头文件中实现代理,定义协议
         2、使用方法:1 设置代理,2 遵守协议,3 实现方法
         3、规范:参考苹果官方的协议实现方式
         4、作用:
                  1、监听事件:A是监听B的一些行为,则A成为B的代理
                  2、消息传递:A想告诉B一些事情,则B成为A的代理
         5、总结:
                  1、如果想监听别人的一些行为,那么就要成为别人的代理
                  2、如果你想告诉别人一些事情,那么就让别人成为你得代理
         6、开发步骤
                  1、拟一份协议(格式:控件名 + Delegate),在协议里声明一些代理方法(一般代理方法都是@optional)
                  2、声明一个代理属性(弱引用) @property (weak,nonatomic) id delegate;
                  3、在内部发生某些行为时,调用代理对应的代理方法,通知代理内部发生了什么事情
                  4、设置代理: xxx.delegate = self;
                  5、 yyy对象遵守协议,实现代理方法

2.2、代码实现

        先看效果

       首先在xib里实现界面如下:

        然后实现文件也比较简单,在点击过加载按钮后,由此对象给代理发送加载数据通知。

        头文件实现里包括代理所遵守协议的定义,包括一个可用方法。

@classSLQLoadData;

@protocol SLQLoadDataDelegate <NSObject>

@optional

/**

*  代理方法:点击按钮操作

*/

- (void)LoadDataDidCilckButton:(SLQLoadData *)loadData;

@interface SLQLoadData : UIView

// 代理属性

@property (weak,nonatomic) id<SLQLoadDataDelegate> delegate;

+ (instancetype)loadData;// 返回加载对象

- (void)endingloadData; // 结束加载

@end

#import "SLQLoadData.h"

@interfaceSLQLoadData ()

- (IBAction)loadMoreData:(id)sender;

@property (weak, nonatomic) IBOutletUIView *loadView; // 正在加载界面

@property (weak, nonatomic) IBOutletUIButton *loadBtn; // 加载按钮

@end

@implementation SLQLoadData

+ (instancetype)loadData

{

// NSStringFromClass 将类名转换成字符串,xib文件名和类名一样

return [[[NSBundlemainBundle] loadNibNamed:NSStringFromClass(self) owner:nil options:nil] lastObject];

}

- (IBAction)loadMoreData:(id)sender

{

// 模拟从网络加载数据

//NSLog(@“loadMoreData”);

self.loadView.hidden = NO;

self.loadBtn.hidden = YES;

// 发送消息到代理对象,首先判断代理方法是否存在

if ([self.delegate respondsToSelector:@selector(LoadDataDidCilckButton:)])

{

[self.delegate  LoadDataDidCilckButton:self];

}

}

// 隐藏正在加载界面

- (void)endingloadData

{

self.loadView.hidden = YES;

self.loadBtn.hidden = NO;

}

@end

2.3、控制器中对代理方法的使用

         1、包含头文件并遵守协议

#import "SLQLoadData.h"

@interfaceViewController () <SLQLoadDataDelegate> // 遵守代理协议

        2、指定代理对象

SLQLoadData *loadData = [SLQLoadData loadData];

// 指定控制器为代理对象

loadData.delegate = self;

self.tableView.tableFooterView = loadData;

       3、实现代理方法

// 实现代理方法

- (void)LoadDataDidCilckButton:(SLQLoadData *)loadData

{

NSLog(@"LoadDataDidCilckButton");

// 模拟从网络加载数据,加一个定时器

dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{

SLQFengNews *news = [[SLQFengNews alloc] init];

news.title = @"高考往事";

news.topic = NO;

news.image = @"ad_02";

news.comment = @"13489";

// 添加至模型对象

[self.news addObject:news];

// 刷新表格

[self.tableView reloadData];

// 隐藏loadView

SLQLoadData *load = (SLQLoadData *)self.tableView.tableFooterView;

[load endingloadData];

});

}

2.4、最终效果 -_-

总结

 其他系统自带通知

UIDevice类提供了一个单例对象,它代表着设备,通过它可以获得一些设备相关的信息,比如电池电量值(batteryLevel)、电池状态(batteryState)、设备的类型(model,比如iPod、iPhone等)、设备的系统(systemVersion)

通过[UIDevice currentDevice]可以获取这个单例对象

UIDevice对象会不间断地发布一些通知,下列是UIDevice对象所发布通知的名称常量:
       UIDeviceOrientationDidChangeNotification // 设备旋转
       UIDeviceBatteryStateDidChangeNotification // 电池状态改变
       UIDeviceBatteryLevelDidChangeNotification // 电池电量改变
       UIDeviceProximityStateDidChangeNotification // 近距离传感器(比如设备贴近了使用者的脸部)

   键盘通知 

我们经常需要在键盘弹出或者隐藏的时候做一些特定的操作,因此需要监听键盘的状态

键盘状态改变的时候,系统会发出一些特定的通知
       UIKeyboardWillShowNotification // 键盘即将显示
       UIKeyboardDidShowNotification // 键盘显示完毕
       UIKeyboardWillHideNotification // 键盘即将隐藏
       UIKeyboardDidHideNotification // 键盘隐藏完毕
       UIKeyboardWillChangeFrameNotification // 键盘的位置尺寸即将发生改变
       UIKeyboardDidChangeFrameNotification // 键盘的位置尺寸改变完毕

系统发出键盘通知时,会附带一下跟键盘有关的额外信息(字典),字典常见的key如下:
       UIKeyboardFrameBeginUserInfoKey // 键盘刚开始的frame
       UIKeyboardFrameEndUserInfoKey // 键盘最终的frame(动画执行完毕后)
       UIKeyboardAnimationDurationUserInfoKey // 键盘动画的时间
       UIKeyboardAnimationCurveUserInfoKey // 键盘动画的执行节奏(快慢)

 代理和通知比较

共同点

利用通知和代理都能完成对象之间的通信(比如A对象告诉D对象发生了什么事情, A对象传递数据给D对象)

不同点

代理 : 1个对象只能告诉另1个对象发生了什么事情

通知 : 1个对象能告诉N个对象发生了什么事情, 1个对象能得知N个对象发生了什么事情

时间: 2024-09-30 10:58:26

IOS笔记044-通知和代理(观察者模式和代理模式)的相关文章

IOS设计模式之三(适配器模式,观察者模式)

本文原文请见:http://www.raywenderlich.com/46988/ios-design-patterns. 由 @krq_tiger(http://weibo.com/xmuzyq)翻译,如果你发现有什么错误,请与我联系谢谢. 适配器(Adapter)模式 适配器可以让一些接口不兼容的类一起工作.它包装一个对象然后暴漏一个标准的交互接口. 如果你熟悉适配器设计模式,苹果通过一个稍微不同的方式来实现它-苹果使用了协议的方式来实现.你可能已经熟悉UITableViewDelegat

设计模式IOS篇-第三章:观察者模式

观察者模式在IOS中也是总要的一种模式,被观察的对象会告诉观察它的对象发生的一些变化,这里会分为两个实现类和两个接口 下面的一个Subject类,包含两个委托ObjectDelagate和SubjectDelegate //Subject.h #import <Foundation/Foundation.h> //观察者委托 @protocol ObserverDelegate @required -(void)update; @end //被观察者委托 @protocol SubjectDe

iOS生命周期 & 通知中心

笔记内容 学习笔记-段玉磊 Stanford course View Controller Lifecycle 这篇文是我记载Developing iOS 7 Apps公开课 第5课的笔记 UITextView Set its text and attributes via its NSMutableAttributedString 使用UITextView 要属性NSTextStorage类型 @property (nonatomic, readonly) NSTextStorage *tex

《Head First 设计模式》学习笔记——观察者模式 + 装饰者模式

装饰者模式是JDK中另一个使用较多的设计模式,上一个是观察者模式(在Swing中大量使用),业内好的API设计无一离不开常见的设计模式,通常我们所说要阅读源码,也是为了学习大牛们的设计思路.----题记 设计模式 观察者模式:定义了对象之间一对多的依赖,这样一来,当一个对象改变状态时,它的所有依赖者都会受到通知并自动更新. 装饰者模式:动态地将责任附加到对象上.若要扩展功能,装饰者提供比继承者更有弹性的替代方案. 设计原则 (1)封装变化. (2)多用组合,少用继承. (3)针对接口编程,而不是

iOS开发中通知(Notification)快速入门及推送通知实现教程

iOS开发中通知(Notification)快速入门及推送通知实现教程 标签: NSNotificationCenterNSNotification 2016-11-14 00:18 232人阅读 评论(0) 收藏 举报  分类: iOS(400)  转载自:http://www.111cn.NET/sj/ios8/90190.htm 通知(Notification)是开发框架中观察者模式的一种实现方式,内部的实现机制由Cocoa框架支持,通常用于试图控制器和数据模型的交互.通过通知,可以向一个

iOS中的通知(NSNotification)

iOS中的通知(NSNotification) 前言 通知中心是一个单例.通知在iOS中是一种设计模式.每一个应用程序都有一个通知中心NSNotificationCenter实例, 专门负责协助不同对象之间的消息通信. 任何一个对象都可以向通知中心发布NSNotification, 描述自己在做什么,而任何注册了该通知的对象该特定通知发布的时候会收到这个通知. 获取通知中心对象 通过下面的方式来获取通知中心对象: 1 2 3 NSNotificationCenter *center = [NSN

IOS 新消息通知提示-声音、震动

一.APNS 1.注册 [[UIApplication sharedApplication] registerForRemoteNotificationTypes:UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert];复制代码2.服务器推送(JAVA) PushNotificationPayload payLoad =  PushNotificationPayl

iOS笔记:Objective-C自定义NSLog宏

/*  XCode LLVM XXX - Preprocessing中Debug会添加 DEBUG=1 标志  */ #ifdef DEBUG #define NSLog(FORMAT, ...) fprintf(stderr,"%s:%d\t%s\n",[[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String], __LINE__, [[NSString stringWithFormat:FORM

学习ios笔记第一天的C语言学习记录

c语言基础学习 int num1 = 15; int num2 = 5; int temp = 0; //先把num1放到temp里 temp = num1; //先把num2放到num1里 num1 = num2; //先把temp放到num2里 num2 = temp; 算数运算符 +加法运算 -减法运算符 *乘法运算符 /除法运算符  ------整型相除取整,除数不为0 %取余运算符 ------两边均为整数 ++递增运算-------运算符在前,先执行:运算符在后,后执行: --递减运