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
Objective-c单例模式详解
其实系统已经有很多单例存在,例如UIApplication、
NSNotification
、NSFileManager等等就是很不错的例子——我们总有时候需要用到单例模式,不过写起代码来还是
Jingege
·
2016-04-11 16:42
UITextField字数限制[中文按2个字符算, Emoji按4个字符算]
阅读更多1,使用
NSNotification
监控变化:[[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(textFieldDidChanged
wishesbest
·
2016-04-07 14:00
UITextField
UITextField字数限制[中文按2个字符算, Emoji按4个字符算]
阅读更多1,使用
NSNotification
监控变化:[[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(textFieldDidChanged
wishesbest
·
2016-04-07 14:00
UITextField
ios的通知应用
NSDictionaryalloc]initWithObjectsAndKeys:[NSStringstringWithFormat:@"%ld",self.playNum],@"playNum",nil]; //创建通知
NSNotification
Haitao0692
·
2016-04-02 19:00
ios
NSNotification
Swift 通知的使用(十一)
NSNotificationCenter.defaultCenter() center.addObserver(self,selector:"getValue:",name:"name",object:nil)funcgetValue(object:
NSNotification
sinat_30162391
·
2016-04-02 01:00
swift
视图随键盘的弹出整体上移UIKeyboardWillChangeFrameNotification
KeyboardWillChange:)name:UIKeyboardWillChangeFrameNotificationobject:nil];-(void)KeyboardWillChange:(
NSNotification
Dlg_90
·
2016-03-29 16:15
ios开发
IOS开发基础篇--NSNotificationCenter使用小结
IOS开发基础篇--NSNotificationCenter使用小结 一、
NSNotification
和Delegate的联系和区别众所周知,IOS中经常会使用到
NSNotification
和delegate
qq_31863011
·
2016-03-29 10:00
通知中心
通知机制与
NSNotification
区别
NSNotification
是抽象的,不可见的推送通知是可见的(
AYuan_
·
2016-03-27 15:41
NSNotificationCenter 的使用详解
Apple还为我们提供了另一种通知响应方式,那就是
NSNotification
,系统中(UIKeyboardDidShowNotification 等)以及某些第三方组件(例如 ASIHTTPRequest
jiangbo_phd
·
2016-03-22 17:00
键盘通知和自定义键盘
UIKeyboardWillShowNotification; UIKeyboardDidShowNotification; UIKeyboardWillHideNotification; UIKeyboardDidHideNotification;通知消息
NSNotification
kermit_liu
·
2016-03-22 17:00
键盘
通知
iOS学习路线历程
objective-c已经学过;iOS常见的基础试图,UITabbarController和UINavigationController多视图控制器还有AFnetworking已经学过并用在了动漫APP里,消息通知
nsnotification
u012723810
·
2016-03-21 11:00
NSNotification
NSNotificationCenter发出通知的过程中会发出一个一个
NSNotification
对象。
y550918116j
·
2016-03-16 10:00
关于代码风格的一些见解(二)
.- (void)onRoomInfoUpdateNotification:(
NSNotification
*)notification { MFChatRoomMessage* message
大巴黎
·
2016-03-15 17:00
通知,KVO解析
通知中心(NSNotificationCenter)每一个应用程序都有一个通知中心(NSNotificationCenter)实例,专门负责协助不同对象之间的消息通信任何一个对象都可以向通知中心发布通知(
NSNotification
ldszw
·
2016-03-13 23:00
通知
KVO
iOS开发-进阶:利用通知(
NSNotification
)进行数据传递
现在有两个控制器,分别为OneViewController、TwoViewController点击OneViewController中的button发出通知,并且TwoViewController接收通知打印OneViewController中传递过来的值-(void)buttonClick{ //添加 字典,将label的值通过key值设置传递 NSDictionary *dict=
sinat_31872425
·
2016-03-13 09:00
ios
通知中心NSNotificationCenter
每一个应用程序都有一个通知中心(NSNotificationCenter)实例,专门负责协助不同对象之间的消息通信任何一个对象都可以向通知中心发布通知(
NSNotification
),描述自己做什么。
编号x71291
·
2016-03-02 22:01
Masonry约束动画 以及 键盘弹起
具体的实现方式可以下载Demo来看,这里只贴出键盘弹出时的处理代码:-(void)keyboardWillChangeFrameNotification:(
NSNotification
*)notification
Cranz_JF
·
2016-02-28 17:00
通知中心和通知
1.首先通知中心和通知是两码事.通知中心是一个类---NSNotificationCenter,通知是另一个类---
NSNotification
.
NSNotification
是对一个通知的描述,即一个通知应该包括哪些信息
yufang
·
2016-02-21 11:00
代理 通知 Block区别
一.各自特点通知(
NSNotification
):“一对一或一对多”,在APP中,很多控制器都需要知道一个事件,应该用通知;但是一定要注意,一旦接收消息的对象多了,就难以控制了,可能有你不希望的对象接受了消息并做了处理
AngusTing
·
2016-02-19 14:00
代理
区别
block
通知
代理 通知 Block区别
一.各自特点通知(
NSNotification
):“一对一或一对多”,在APP中,很多控制器都需要知道一个事件,应该用通知;但是一定要注意,一旦接收消息的对象多了,就难以控制了,可能有你不希望的对象接受了消息并做了处理
AngusTing
·
2016-02-19 14:00
代理
区别
block
通知
菜鸟程序猿的爬坑日记(一)
1.NSDictionary初始化乱入有关通知
NSNotification
(有点扯淡):很少用通知,今天随手写了个通知传值,死活传不过去,打断点找了半天也没发现,最后是朋友发现了,发送和接收的通知名写的不一致
MysticCoder
·
2016-02-02 21:01
iOS -- 通知
NSNotification
通知使用步骤:1、注册通知if([selfrespondsToSelector:@selector(adjustRootViewPageWithNotification:)]){ [[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(adjustRootViewPageWithNotification:)nam
Jason_WangYing
·
2016-01-22 21:00
KVC、KVO、
NSNotification
、delegate 的区别,对公司新人的解答
delegate 的 优势 : 1.非常严格的语法。所有将听到的事件必须是在delegate协议中有清晰的定义。 2.如果delegate中的一个方法没有实现那么就会出现编译警告/错误 3.协议必须在controller的作用域范围内定义 4.在一个应用中的控制流程是可跟踪的并且是可识别的; 5.在一个控制器中可以定义定义多个不同的协议,每个协议有不同的del
菲尼模式
·
2016-01-16 23:00
iOS(五)基于XMPP协议的聊天App:二
之前讲过消息通知机制,当RosterConrtroller被通知时,判断是否登陆成功并在线,如果成功,则寻找帐号好友-(void)onlineNotification:(
NSNotification
*)
u012723810
·
2016-01-16 19:00
OS页面间传值的方式
OS页面间传值的方式(NSUserDefault/Delegate/
NSNotification
/Block/单例)实现了以下iOS页面间传值:1.委托delegate方式;2.通知notification
q375537943
·
2016-01-13 10:00
Objective-C
ios开发
OS页面间传值的方式
KVO
KVO简单介绍与实现KeyValueObserving,顾名思义就是一种observer模式用于监听property的变化,KVO跟
NSNotification
有很多相似的地方,用addObserver
FTD1120
·
2016-01-12 16:00
ios
iOS页面间传值的方式(Delegate/
NSNotification
/Block/NSUserDefault/单例)
实现了以下iOS页面间传值:1.委托delegate方式;2.通知notification方式;3.block方式;4.UserDefault或者文件方式;5.单例模式方式;6.通过设置属性,实现页面间传值在iOS开发中,我们经常会遇到页面间跳转传值的问题,现归纳总结一下:情况1:A页面跳转到B页面方法:在B页面的控制器中,编写对应的属性,在A页面跳转到B页面的地方,给B的属性赋值即可viewso
DJH996064549
·
2016-01-11 17:00
IOS学习笔记之通知
NSNotificationCenter就是IOSSDK为开发者实现的观察者模式,这种设计模式的示意图如图所示:
NSNotification
daicailing_blog
·
2016-01-11 08:32
IOS通知
iOS
NSNotification
(通知)的使用
NSNotification
和NSNotificationCenter
NSNotification
是通过NSNotificationCenter封装信息来广播给其它对象的。
hnuzengchao
·
2015-12-31 15:00
ios
swift
notification
observer
Notification
NSNotification
通知在发送通知的类中实现发送通知的行为,确定通知的名称,发送的内容等信息CocoaLigature0[[NSNotificationCenterdefaultCenter]postNotificationName
JIANKING_COOL
·
2015-12-29 21:42
Notification
OC_编程
深入
NSNotification
(iOS)
NSNotification
顾名思义就是通知的作用,一个对象通知另外一个对象,可以用来传递参数、通信等作用,与delegate的一对一不同,通知是一对多的。
StrongX
·
2015-12-29 20:00
iOS页面间传值的方式(Delegate/
NSNotification
/Block/NSUserDefault/单例)
iOS页面间传值的方式(NSUserDefault/Delegate/
NSNotification
/Block/单例)实现了以下iOS页面间传值:1.委托delegate方式;2.通知notification
无边小仙
·
2015-12-29 18:00
NSNotification
Name 最佳写法
1.
NSNotification
标准使用方法发送通知[[NSNotificationCenterdefaultCenter]postNotificationName:QLPosterDidPostNotificationobject
Norcy
·
2015-12-27 16:00
[消息传递之一]-
NSNotification
练习
#import @interfaceViewController:UIViewController -(IBAction)RegisterNot:(UIButton*)sender; -(IBAction)ExecuteNot:(UIButton*)sender; -(IBAction)RemoveNot:(UIButton*)sender; //注意点1:响应通知中心的函数为固定格式,如
liyanq528
·
2015-12-24 13:00
消息通知
在Autolayout下处理键盘,输入框
-(void)KeyboardManage:(
NSNotification
*)notification{ //获取键盘基本信息(动画时长与键盘高度) NSDictionary*userInfo=[notificationuserInfo
ralbatr
·
2015-12-15 18:00
autolayout
ios 通知传值的简单使用(一)
Viewcontroller//获取通知中心单例对象,一个应用程序只有一个通知中心NSNotificationCenter*NC=[NSNotificationCenterdefaultCenter];//不是
NSNotification
ss18829289878
·
2015-12-12 10:00
ios
回调
ios开发
通知
NSNotification
、delegate和KVO的区别
1.效率:delegate比
nsnotification
高。
·
2015-12-09 10:03
notification
iOS 页面间几种传值方式(属性,代理,block,单例,通知
iOS页面间几种传值方式属性(KVC,KVO),代理(delegate),block,单例,通知(
NSNotification
)**应用场景:**第二个视图控制器如何获取第一个视图控制的信息eg:第二个界面中的
ChinHan
·
2015-12-03 09:52
大自然的搬运工
iOS开发实用技术之推送-应用间跳转-社交分享
>首先明确:**此处的推送通知跟我们的”
NSNotification
”没有半毛钱关系 >可以理解为:向用户推送一条信息来通知用户某件事情 >作用:可以在APP退到后台,或者关闭时;继续推送一条消息告诉用户某件事情
文刂Rn
·
2015-11-27 18:00
当你不爱我的时候,请告诉我(KVC/KVO/
NSNotification
)
KVCKVONSNotification一、KVC====基本概念它是一种可以直接通过字符串类型的属性名(key)来访问某个类属性的机制。而不是通过调用Setter、Getter方法访问。所有NSObject对象都可以使用KVC。KVC既支持带有对象值的属性,也支持基本数据类型和结构。基本数据类型会被自动封装和解装。====基本使用1.通过setValue:forKey:设置对象的值。2.通过va
云溪_Cloud
·
2015-11-27 17:43
iOS
NSNotification
通知传值
通知中心(
NSNotification
)传值,可以跨越多个页面传值,一般也是从后面的页面传给前面的页面,即反向传值。思路:第三个界面的值传给第一个界面。
Dancer2015
·
2015-11-27 16:03
总结 通知的一些用法
1、
NSNotification
这个类可以理解为一个消息对象,其中有三个成员变量。这个成员变量是这个消息对象的唯一标识,用于辨别消息对象。
赖赖每一天
·
2015-11-27 16:00
App Nap
funcapplicationDidChangeOcclusionState(notification:
NSNotification
){ ifNSApp.occlus
exialym
·
2015-11-26 19:00
osx
App-Nap
iOS ViewController之间传值方法三(利用
NSNotification
)
3.利用
NSNotification
在两个或多个ViewController之间传值在A页面 //注册通知 [[NSNotificationCenterdefaultCenter]addObserver
xuepan1994
·
2015-11-20 23:00
iOS页面间传值的方式(Delegate/
NSNotification
/Block/NSUserDefault/单例)
iOS页面间传值的方式(NSUserDefault/Delegate/
NSNotification
/Block/单例)实现了以下iOS页面间传值:1.委托delegate方式;2.通知notification
u012898396
·
2015-11-18 11:00
NSNotification
的几点说明
1、
NSNotification
消息的同步性 ①
NSNotification
使用的是同步操作。
·
2015-11-13 14:19
notification
iOS开发UI篇—通知中心(NSNotificationCenter)
) 每一个应用程序都有一个通知中心(NSNotificationCenter)实例,专门负责协助不同对象 之间的消息通信 •任何一个对象都可以向通知中心发布通知(
NSNotification
·
2015-11-13 09:02
notification
B2-通知机制(概念)
[NSNotificationCenter defaultCenter]; 二、通知(
NSNotification
) // 一个完整的通知一般包含3个属性: - (NSString *)name
·
2015-11-13 08:02
通知
ios基础知识
NSNotificationCenter) 每一个应用程序都有一个通知中心(NSNotificationCenter)实例,专门负责协助不同对象之间的消息通信 任何一个对象都可以向通知中心发布通知(
NSNotification
·
2015-11-13 08:17
ios
iOS开发:Objective-C中通知与协议的区别?
what is difference between
NSNotification
and protocol? (通知和协议的不同之处?)
·
2015-11-13 07:26
Objective-C
上一页
8
9
10
11
12
13
14
15
下一页
按字母分类:
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
其他