什么是Notification?这个要求其实也很容易实现. 每个运行中的application都有一个NSNotificationCenter的成员变量,它的功能就类似公共栏. 对象注册关注某个确定的notification(如果有人捡到一只小狗,就去告诉我). 我们把这些注册对象叫做 observer. 其它的一些对象会给center发送notifications(我捡到了一只小狗). center将该notifications转发给所有注册对该notification感兴趣的对象. 我们把这些发送notification的对象叫做poster
很多的标准Cocoa类会发送notifications: 在改变size的时候,Window会发送notification; 选择table vIEw中的一行时,table vIEw会发送notification;我们可以在在线帮助文档中查看到标准cocoa对象发送的notification
在对象释放前,我们必须从notification center移除我们注册的observer. 一般我们在dealloc方法中做这件事
NSNotification类
提供给observer的信息包裹. notification对象有两个重要的成员变量: name 和 object.
- (Nsstring *)name;
- (ID)object;
- (NSDictionary *)userInfo;我们想要notification对象传递更多的信息
+ (ID)notificationWithname:(Nsstring *)aname object:(ID)anObject;
+ (ID)notificationWithname:(Nsstring *)aname object:(ID)anObject userInfo:(NSDictionary*)aUserInfo;
NSNotificationCenter类
+ (ID)defaultCenter;返回notification center [类方法,返回全局对象,单件模式.cocoa的很多的全局对象都是通过类似方法实现]
- (voID)addobserver:(ID)observer selector:(SEL)aSelector name:(Nsstring *)aname object:(ID)anObject;
如果notificationname为nil. 那么notification center将anObject发送的所有notification转发给observer
. 如果anObject为nil.那么notification center将所有名字为notificationname的notification转发给observer
- (voID)postNotification:(NSNotification *)notification;
- (voID)postNotificationname:(Nsstring *)aname object:(ID)anObject;
- (voID)postNotificationname:(Nsstring *)aname object:(ID)anObject userInfo:(NSDictionary*)aUserInfo;
- (voID)removeObserver:(ID)observer;
- (voID)removeObserver:(ID)observer name:(Nsstring *)aname object:(ID)anObject
接下来给大家看一下例子。
- (voID)vIEwDIDLoad
{
[super vIEwDIDLoad];
self.vIEw.backgroundcolor = [UIcolor colorWithRed:0.05 green:0.6 blue:0.3 Alpha:1.0];
self.navigationController.navigationbar.tintcolor = [UIcolor colorWithRed:0.2 green:0.3 blue:0.5 Alpha:1];
count = 0;
timer = [NSTimer scheduledTimerWithTimeIn
[[NSNotificationCenter defaultCenter] addobserver:self selector:@selector(receiveNotification:) name:@”Note” object:nil];
}
-(voID)updateTimer:(NSTimer*)time{
count++;
self.Title = [Nsstring stringWithFormat:@"%d",count];
if (count%5 == 0) {
[[NSNotificationCenter defaultCenter] postNotificationname:@”Note” object:nil];
}
}
-(voID)receiveNotification:(NSNotification*)note{
UIAlertVIEw* noteVIEw = [[UIAlertVIEw alloc] initWithTitle:nil message:@”You receive a notification!!” delegate:self cancelbuttonTitle:@”OK” otherbuttonTitles:nil];
[noteVIEw show];
[noteVIEw release];
}
- (voID)vIEwDIDUnload
{
[[NSNotificationCenter defaultCenter] removeObject:self];
[super vIEwDIDUnload];
// Release any retained subvIEws of the main vIEw.
// e.g. self.myOutlet = nil;
if (timer != nil) { [timer release]; timer = nil; } }
总结以上是内存溢出为你收集整理的iOS Notification 的使用全部内容,希望文章能够帮你解决iOS Notification 的使用所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)