Reputation: 299
Im getting the following issue in ios how to clear and run the code successfully.
The issue is:
"No visible @interface for 'ViewController' declares the selector 'performSelector:afterDelay:'".
Upvotes: 1
Views: 477
Reputation: 77651
There is no such function performSelector:afterDelay:
.
Looking at the docs the only function that includes "performSelector" and "afterDelay" is...
performSelector:withObject:afterDelay:
and
performSelector:withObject:afterDelay:inModes:
Upvotes: 3