Ios App developer
Ios App developer

Reputation: 299

No Visible @interface error in ios

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

Answers (1)

Fogmeister
Fogmeister

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

Related Questions