E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
NSNotification
NSNotificationCenter和消息推送的学习
你也可以继承
NSNotification
写一个自己的通知类来自定义行为。通知的独特之处在于,发送者和接收者不需要相互知道
longshihua
·
2015-06-22 16:00
IOS开发,子线程中是不能更新UI的
今天发现一个奇怪问题,当用
NSNotification
,在回调函数里面对tableview进行reloadData时,并不能更新UI,而且还会导致以后都更新不了。
ogreaxe
·
2015-05-25 13:54
线程
ios开发
更新UI
iOS页面间传值的方式(Delegate/
NSNotification
/Block/NSUserDefault/单例)
iOS页面间传值的方式(NSUserDefault/Delegate/
NSNotification
/Block/单例)实现了以下iOS页面间传值:1.委托delegate方式;2.通知notification
Cloudox_
·
2015-05-21 13:00
ios
delegate
block
传值
NSNotification
iOS中的自定义通知和通知传值的简单介绍
一个NSNotificationCenter可以有许多的通知消息
NSNotification
,对于每一个
NSNotification
可以有很多的观察者Observer来
wei78008023
·
2015-05-15 14:00
通知传值
iOS自定义通知
NSNotification
tips
Notifications/Introduction/introNotifications.html#//apple_ref/doc/uid/10000043-SW1 1、
NSNotification
啸笑天
·
2015-05-14 21:00
notification
NSNotification
学习笔记
这是一个观察者模式。首先在你需要监听的类中加入观察者:-(void)addObserver:(id)observerselector:(SEL)aSelectorname:(NSString*)aNameobject:(id)anObject;这个观察者在监听到anObject发送名字为aName的notification时,调用selector的方法,在aSelector方法中得到userInf
来自南方的熊
·
2015-05-11 14:37
NSNotification
ios通知
iOS通知传值
IOS
消息传递机制
你也可以继承
NSNotification
写一个自己的通知类来自定义行为。通知的独特之处在于,发送者
sinat_27706697
·
2015-05-02 08:00
消息传递机制
NSNotification
、delegate和KVO的区别
1.效率肯定是delegate比
nsnotification
高。
夕阳_jhe
·
2015-04-28 21:00
iOS中
NSNotification
、delegate、KVO三者之间的区别与联系?
在开发ios应用的时候,我们会经常遇到一个常见的问题:在不过分耦合的前提下,controllers间怎么进行通信。在IOS应用不断的出现三种模式来实现这种通信: 1.委托delegation; 2.通知中心NotificationCenter; 3.键值观察keyvalueobserving,KVO 因此,那为什么我们需要这些模式以及什么时候用它以
夕阳_jhe
·
2015-04-28 16:00
IOS中通知中心(NSNotificationCenter)的使用总结
IOS中通知中心NSNotificationCenter应用总结一、了解几个相关的类1、
NSNotification
这个类可以理解为一个消息对象,其中有三个成员变量。
珲少
·
2015-04-25 10:00
IOS 弹出键盘 移动视图
addObserver:selfselector:@selector(keyboardWillShow:)name:UIKeyboardWillShowNotificationobject:nil]; [[
NSNotification
m372897500
·
2015-04-24 12:00
通知机制
通知中心(NSNotificationCenter)每一个应用程序都有一个通知中心(NSNotificationCenter)实例,专门负责协助不同对象之间的消息通信任何一个对象都可以向通知中心发布通知(
NSNotification
tripleCC
·
2015-04-07 15:00
IOS-
NSNotification
的简单使用流程:
NSNotification
的简单使用流程(例子)如下:1、在viewDidLoad添加:-(void)viewDidLoad{//添加如下 [[NSNotificationCenterdefaultCenter
u011068996
·
2015-04-07 14:00
ios
NSNotification
[置顶] 代理delegate、
NSNotification
、KVC、KVO的区别
代理苹果的官方文档解释:Delegationisasimpleandpowerfulpatterninwhichoneobjectinaprogramactsonbehalfof,orincoordinationwith,anotherobject.Thedelegatingobjectkeepsareferencetotheotherobject—thedelegate—andattheappr
lyj617
·
2015-04-02 16:00
设计模式
delegate
消息
KVO
KVC
《Cocoa编程开发者手册》第五章
-(void)applicationwillfinishlaunching:(
nsnotification
*)anotification
DsonKing
·
2015-04-01 10:00
NSNotification
先注册监听,再发送消息
//测试了一下,此处的obj没啥用,写nil都可以,do:的参数是
NSNotification
对象!!!
丶雨凡
·
2015-03-26 20:00
注册监听
可选带参数
再发送消息
iOS.OC KVO-键值观察者
它与
NSNotification
不同,键-值观察中并没有所谓的中心对象来为所有观察者 提供变化通知。取而代之地,当有变化发生时,通知被直接发送至处于观察状态的对象。
·
2015-03-21 17:00
ios
关于视图随键盘移动
-(void)keyboardWillShow:(
NSNotification
*)note{//getkeyboardsizeandloctaionCGRectkeyboardBounds;[[note.userInfovalueForKey
chenglei9128
·
2015-03-16 14:00
IOS
NSNotification
通知详解 & 新闻小实例
一NSNotificationCenter通知中心每个应用程序都有一个默认通知中心NSNotificationCenter,负责协助不同对象之间的消息通信,任何一个对象都可以向通知中心发布通知,其监听对象Observer可用接受发布者对象的通知。NSNotificationCenter对象,采用单例设计模式,defaultCenter方法就可用huohuo获取NSNotificationCente
卧龙小
·
2015-03-14 23:00
ios
NSNotification
iOS 中KVC、KVO、
NSNotification
、delegate 总结及区别
iOS中KVC、KVO、
NSNotification
、delegate总结及区别 1、KVC,即是指 NSKeyValueCoding,一个非正式的Protocol,提供一种机制来间接访问对象的属性。
Eduora_meimei
·
2015-03-13 15:00
delegate
iPhone开发
KVO
KVC
iOS Notification(二):处理&监听通知事件
这个通知是可以最多携带一个参数的,这个参数是一个指向
NSNotification
的对象指针。
becomedragonlong
·
2015-01-28 10:00
Objective-C
notification
ios开发
【原】UI随设备旋转从iOS6到iOS8的适配策略
- (void)statusBarOrientationChange:(
NSNotification
*)notification { WClassAndFunctionName;
·
2015-01-20 17:00
iOS6
Objective-C编程之NSNotificationCenter详解
Apple还为我们提供了另一种通知响应方式,那就是
NSNotification
,系统中(UIKeyboardDidShowNotification等)以及某些第三方组件(例如ASIHTTP
googlingman
·
2015-01-03 11:47
Objective-C
NSNotifi
C++/Objective
C
Objective-C编程之NSNotificationCenter详解
Apple还为我们提供了另一种通知响应方式,那就是
NSNotification
,系统中(UIKeyboardDidShowNotification 等)以及某些第三方组件
朱先忠老师
·
2015-01-03 11:47
Objective-C
opengl 在 Mac os x下默认是2.1的问题
-(void)applicationDidFinishLaunching:(
NSNotification
*)aNotification{ //Insertcodeheretoinitializeyourapplication
大黄
·
2014-12-25 19:00
使用
NSNotification
传递参数
今天使用
NSNotification
在界面之间传递参数。
human8848
·
2014-12-09 17:00
ios
switch
NSNotification
通知中心
一个NSNotificationCenter可以有许多的通知消息
NSNotification
,对于每一个
NSNotification
可以有很多的观察者O
NetworkAD
·
2014-11-26 11:35
通知中心
通过
NSNotification
获得用户信息
Theuserinformationdictionaryassociatedwiththereceiver.(read-only)Maybenil.Theuserinformationdictionarystoresanyadditionalobjectsthatobjectsreceivingthenotificationmightuse.Forexample,intheApplicationK
never7c
·
2014-11-25 19:00
NSNotification
、delegate和KVO的区别
1.效率肯定是delegate比
nsnotification
高。
Im刘亚芳
·
2014-11-24 21:53
如何
should
特色
最大的
通告
NSNotification
、delegate和KVO的区别
1.效率肯定是delegate比
nsnotification
高。
Im刘亚芳
·
2014-11-24 21:53
通告
如何
特色
IOS杂谈
IOS 消息中心机制
/*
NSNotification
.hCopyright(c)1994-2012,AppleInc.Allrightsreserved.
u011374880
·
2014-11-21 19:00
传感器
消息中心
键盘学习笔记
-(void)handleKeyboardDidShow:(
NSNotification
*)notification{NSDictionary*info=[notificationuserInfo];CGRectkeyboardFrame
RoderickKennedy
·
2014-11-18 09:05
键盘
IOS
IOS
高级开发篇
键盘学习笔记
-(void)handleKeyboardDidShow:(
NSNotification
*)notification{ NSDictionary*info=[notificationuserInfo]
RoderickKennedy
·
2014-11-18 09:05
ios
键盘
NSNotification
NSNotificationCenter有什么作用,简单说之,就是两个不相干的对象之间可以通过他来传递消息,只要你把相关发送的消息和处理的事件在他那里注册就行了。我们可以这样理解:NSNotificationCenter就是一个信息中心,有很多用户已经声明他们需要这些信息。当有信息更新的时候,通过这个NSNotificationCenter就可以以广播的形式,将信息更新的消息在整个应用程序中间广播
WUWUWEIWEILONGLONG
·
2014-11-08 17:00
iOS 文本输入框随键盘上移
iPhone开发时,键盘弹出来后可能会盖住输入框,这个问题是需要自己解决的,不像android系统解决了,很久没写了,发现一个哥们写的还不错,转一下:-(void)keyboardWillShow:(
NSNotification
IT___LaDeng
·
2014-11-03 10:00
NSNotification
通知
阅读更多[[NSNotificationCenterdefaultCenter]postNotificationName:@"people"object:[self.listdataobjectAtIndex:indexPath.row]]//给要传的值写个名字如:@“people”接收:[[NSNotificationCenterdefaultCenter]addObserver:selfsel
caoyudong
·
2014-10-25 17:00
Objective-C
iOS
Cocoa
NSNotification
通知
阅读更多[[NSNotificationCenterdefaultCenter]postNotificationName:@"people"object:[self.listdataobjectAtIndex:indexPath.row]]//给要传的值写个名字如:@“people”接收:[[NSNotificationCenterdefaultCenter]addObserver:selfsel
caoyudong
·
2014-10-25 17:00
Objective-C
iOS
Cocoa
NSNotification
通知
[[NSNotificationCenter defaultCenter]postNotificationName:@"people" object:[self.listdata objectAtIndex:indexPath.row]]//给要传的值写个名字如:@“people” 接收: [[NSNotificationCenter
caoyudong
·
2014-10-25 17:00
ios
cocoa
Objective-C
iOS页面间传值的方式(Delegate/
NSNotification
/Block/NSUserDefault/单例)
iOS页面间传值的方式(NSUserDefault/Delegate/
NSNotification
/Block/单例)实现了以下iOS页面间传值:1.委托delegate方式;2.通知notification
Rolei_kezhu
·
2014-10-12 15:15
iOS页面间传值的方式(Delegate/
NSNotification
/Block/NSUserDefault/单例)
iOS页面间传值的方式(NSUserDefault/Delegate/
NSNotification
/Block/单例)实现了以下iOS页面间传值:1.委托delegate方式;2.通知notification
leikezhu1981
·
2014-10-12 15:00
通知机制
通知中心每一个应用程序都有一个通知中心(NSNotificationCenter)实例,专门负责协助不同对象之间的消息通信任何一个对象都可以向通知中心发布通知(
NSNotification
),描述自己在做什么
天边那束阳光
·
2014-10-11 20:00
ios8下LocationManager及
Nsnotification
使用
locationservice使用ios8之前locationservice在应用开启self.locationManager=[[CLLocatonManageralloc]init][self.locationManagerstartUpdatingLocation];在iOS8上需要加上kCLAuthorizationStatusAuthorizedAlways,在app中的info.pli
Demidroid
·
2014-09-29 08:14
ios8
使用
locationmanager
NSNotification
ios-消息中心 NSNotificationCenter 的介绍
一个NSNotificationCenter可以有许多的通知消息
NSNotification
,对于每一个NSNotific
baby_hua
·
2014-07-05 14:00
ios
消息中心
通知
NSNotification
常用形式介绍(简单粗暴)
@注册通知监听器 //observer:监听器,即谁要接收这个通知 //aSelector:收到通知后,回调监听器的这个方法,并且把通知对象当做参数传入 //aName:通知的名称。如果为nil,那么无论通知的名称是什么,监听器都能收到这个通知 //anObject:通知发布者。如果为anObject和aName都为nil,监听器都收到所有的通知 -(void)addObserver:(id)ob
humingtao2013
·
2014-06-05 16:00
方法
NSNotification
IOS中
NSNotification
使用笔记
1基本用法添加观察(可能很多页面)[[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(changeIntlCode:)name:NOTIFICATION_SUCCESS_SELECT_INTLCODEobject:nil];发出通知(可能只有一个页面)[[NSNotificationCenterdefault
xdrt81y
·
2014-06-04 17:00
ios
notification
基本用法
UIAlertView 简单使用,
NSNotification
键盘监听(零碎内容)
UIAlertView简单使用//点击tableViewCell时弹出UIAlertView -(void)tableView:(UITableView*)tableViewdidSelectRowAtIndexPath:(NSIndexPath*)indexPath{ LFHero*hero=self.heros[indexPath.row]; //新建UIAlertView类,init时,
dwt1220
·
2014-06-02 15:00
iOS中的通知机制
任何一个对象都可以向通知中心发布通知(
NSNotification
),描述自己在做什么.其他感兴趣的对象(Observe)可以申请在某个特定通知发布的时候(或在某个特定对象发布通知时)收到这个通知.通知
傲风凌寒
·
2014-05-30 18:00
notification
NSNotification
的用法
正文:---什么是Notification?---这个要求其实也很容易实现.每个运行中的application都有一个NSNotificationCenter的成员变量,它的功能就类似公共栏.对象注册关注某个确定的notification(如果有人捡到一只小狗,就去告诉我).我们把这些注册对象叫做observer.其它的一些对象会给center发送notifications(我捡到了一只小狗).c
humingtao2013
·
2014-04-28 23:00
观察者
通知
NSNotification
iOS
NSNotification
的使用
如果在一个类中想要执行另一个类中的方法可以使用通知1.创建一个通知对象:使用notificationWithName:object:或者notificationWithName:object:userInfo:
NSNotification
夏雪冬日
·
2014-04-22 21:00
iOS开发的技巧,新的一篇,持续更新。。。(系列二)
(系列一)201403311、说一说通知
NSNotification
和NSNotificationCenter在iOS应用开发中有一个NotificationCenter的概念,它是一个单利对象,允许当某个事件发生时候通知一些对象
召唤攻城狮
·
2014-04-03 13:00
ios
notification
extension
category
上一页
9
10
11
12
13
14
15
16
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他