ios中view和view的传值(NSUserDefaults和通知中心)

原文地址: http://blog.csdn.net/gyz413977349/article/details/38333951

1、利用NSUserDefaults来传值,这种方法只限于传少量数据的情形:

比如你要传一个float的值,在需要传的时候用

[[NSUserDefaults standardUserDefaults] setFloat:float forKey::@”float”]

接收值的时候用

[[NSUserDefaults standardUserDefaults] floatForKey:@”float”]

2、NSNotificationCenter来传值

  • (void)touchesEnded:(NSSet )touches withEvent:(UIEvent )event

{

UITouch * touch = [touches anyObject];

CGPoint point = [touch locationInView:self];

CGRect roundRect = [self rectNeedRefreshFromThisPoint:point];

mLastPoint = CGPointMake(-1, -1);



NSLog(@"%s: point(%f,%f)", __FUNCTION__, point.x, point.y);



[self addToCurrentLineWithPoint:point.x y:point.y];

[self endLine];

[self setNeedsDisplayInRect:roundRect];



NSNumber *pointX = [NSNumber numberWithFloat:point.x];

NSNumber *pointY = [NSNumber numberWithFloat:point.y];

NSDictionary *pointDict = [NSDictionary dictionaryWithObjectsAndKeys:pointX,@"pointX",pointY,@"pointY", nil];

[[NSNotificationCenter defaultCenter]postNotificationName:@"passTouchedEndPointMsg" object:self userInfo:pointDict];

}

在消息中心的函数:

[[NSNotificationCenter defaultCenter] addObserver:self

                                             selector:@selector(getTouchedPoint:)

                                                 name:@"passTouchedEndPointMsg"

                                               object:nil];
  • (void) getTouchedPoint

:(NSNotification *)noti

{

NSDictionary *pointDict = [noti userInfo];

touchedEndPointX = [[pointDict objectForKey:@"pointX"] floatValue];

touchedEndPointY = [[pointDict objectForKey:@"pointY"] floatValue];

NSLog(@"%f:%f",touchedEndPointX,touchedEndPointY);

}

用消息来传参数有下面几点说法:object指的是发送者、在poseter端的userInfo里面可以存放要传的参数,必须为NSDictionary类型。在center端获取这个dictionary类型用:[notification userInfo];来获取

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值