* @property TimeInterval 之行之前等待的时间。比如设置为1.0,代表1秒后之行方法
* @property target 需要执行方法的对象
* @property selector 需要执行的方法
* @property userInfo 保存定时器使用者的一些信息
* @property repeats 是否需要循环
//如果传递参数为对象可以直接传递、否则需要封装成一个对象传递
NSDictionary *dic01 = @{@"left":@"limpar o cache"};
//创建定时器
timer = [NSTimer scheduledTimerWithTimeInterval:1
target:self
selector:@selector(changed:)
userInfo:nil
repeats:YES];
//定时器要执行的方法
-(void)changed:(NSTimer *)tim{
NSString *str = tim.userInfo[@"left"];
//str = limpar o cache
}