nstimer 定时器穿参数

来源:互联网 发布:网络策划经理招聘 编辑:程序博客网 时间:2024/06/08 19:30

for (GoldView *vcin viewGoldCollection

{

[NSTimerscheduledTimerWithTimeInterval:2target:selfselector:@selector(animateTimer:)userInfo:vc repeats:NO];

}


-(void)animateTimer:(NSTimer *)timer

{

    [selfperformSelectorOnMainThread:@selector(setShowGoldView:)withObject:(GoldView*)timer.userInfowaitUntilDone:NO];

    //Not sure if this is required, since the timer does not repeat

    [timer invalidate];

}


-(void)setShowGoldView:(GoldView*)vc

{

  [vc setStyle:rand()%3 ];

  [vc AddStartEffect:rand()%3];

}


原创粉丝点击