I have a method like this :
-(void)fastTapCartBack:(NSString*)ActionType
And I want to use it as selector in NSTimer like this :
self.timer = [NSTimer scheduledTimerWithTimeInterval:1 target:self selector:[self performSelector:@selector(fastTapCartBack:) withObject:@"FAST"] userInfo:nil repeats:NO]
But It have Error :
Implicit conversion of an Objective-C pointer to 'SEL _Nonnull' is disallowed with ARC