[MyClassName thisIsStaticMethod:@"Hello"];
Above static / class method can be called from selector in this way ->
[NSTimer scheduledTimerWithTimeInterval:1.0f
target:[MyClassName class]
selector:@selector(thisIsStaticMethod:)
userInfo:@"Hello"
repeats:NO];
Above static / class method can be called from selector in this way ->
[NSTimer scheduledTimerWithTimeInterval:1.0f
target:[MyClassName class]
selector:@selector(thisIsStaticMethod:)
userInfo:@"Hello"
repeats:NO];
No comments:
Post a Comment