tags:

views:

165

answers:

2

Hey Guys,

Hey Guys I am calling a method from another method and I continue to get warning:firstViewController may not respond to'-playJS'

-(void) playJS
{

//my code here

}
+1  A: 

You probably haven't declared the method yet in the header file.

Acharya
Thank You, fixed the issue
harekam_taj
A: 

Instead of writing the declaration in the header file, it's also OK to declare it before the call.

KatokichiSoft