通过NSTimer看IPhone对@selector的函数如何传参数

简介: <span style="font-family:Arial; font-size:14px; line-height:26px">  </span><br style="font-family:Arial; font-size:14px; line-height:26px"><p style="margin-top:0px; margin-bottom:0px; padding-top:
  

NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];  

    if(oldView != nil)

    {

        [dict setObject:oldView forKey:@"oldView"]; 

    }

    if(newView != nil)

    {

        [dict setObject:newView forKey:@"newView"]; 

    } 

    [NSTimer scheduledTimerWithTimeInterval:0.0 target:self selector:@selector(onTimer:userInfo:dict repeats:NO];  

    [dict release];

 

 

- (void)onTimer:(NSTimer *)timer 

{  

    UIView *oldView = [[timer userInfo] objectForKey:@"oldView"];

    UIView *newView = [[timer userInfo] objectForKey:@"newView"];  

    [UIView animateWithDuration:2.0  delay:0

                        options:UIViewAnimationOptionAllowUserInteraction

                     animations:^{  

                         oldView.alpha = 0.0

                         newView.alpha = 1.0;  

                     }  


从上可以看出,NSTimer在对@selector(onTimer:)传递参数时,将传参的对象储存在了NSTimeruserInfo的字典里,在- (void)onTimer:(NSTimer *)timer中

通过取出该字典加以使用。

这个其实也就是iphone对@selector对象传参的通用的形式。

目录
相关文章
|
API iOS开发
iOS开发-SDWebImage的回调不addSubView不会调用
iOS开发-SDWebImage的回调不addSubView不会调用
78 0
iOS开发-SDWebImage的回调不addSubView不会调用
|
C语言
performSelector消除警告'undeclared selector'的方法
performSelector消除警告'undeclared selector'的方法
541 0
|
程序员 iOS开发
performSelector的原理以及用法
performSelector的原理以及用法
298 0
|
iOS开发
iOS NSTimer 定时器用法总结
iOS NSTimer 定时器用法总结
254 0
|
iOS开发 Serverless
iOS - OC NSTimer 定时器
前言 @interface NSTimer : NSObject @interface CADisplayLink : NSObject 作用 在指定的时间执行指定的任务。
1362 0