Pass parameter to NSTimer

To pass parameter to an NSTimer, the parameter should be specified in the field userInfo of the timer. We can pass any number of parameters to NSTimer provided they are wrapped into a collection. Here i am passing two strings to the timer method by wrapping them into an NSMutableDictionary.

NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
[dict setObject:@"1" forKey:@"a"];
[dict setObject:@"2" forKey:@"b"];


Create the timer.
[NSTimer scheduledTimerWithTimeInterval:1 target:self selector:@selector(myTimerMethod:) userInfo:dict repeats:NO];
[dict release];

implement the timer method.

-(void)myTimerMethod:(NSTimer*)myTimer
{
//cast the userInfo of the timer to a variable of object we assigned earlier.
NSMutableDictionary *dict = [myTimer userInfo];
NSLog(@”cur dict is:%@”,[dict objectForKey:@"a"]);
NSLog(@”cur dict is:%@”,dict);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值