有人问NSTimer 怎么调用类方法,自己想想还不知道怎么办,平时传的都是些对象方法啊,类方法怎么传啊,原来so easy:
_timer= [NSTimer scheduledTimerWithTimeInterval:1.0f target: self selector:@selector(updateTimer) userInfo:nil repeats:NO];
这样,updateTimer 是一个对象方法,如果想调用类方法,即静态方法,只需把target参数改成:[ClassName class]即可,在此记录一下吧。