I'm stuck on this problem, please help me.
I have a ViewController with class name: FLViewController. In the .m file, I declare some other interfaces:
@interface FLViewController (InternalMethods)
- (void)updateButtonStates;
@end
@interface FLViewController (AVCaptureManagerDelegate) <AVCaptureManagerDelegate>
-(void)adMobProcess
@end
In the implementation of FLViewController, I call method adMobProcess
of Interface FLViewController (AVCaptureManagerDelegate)
but the compiler said that "No visible @interface for FLViewController
declares selector adMobProcess
"
I can move the method above into the implementation of FLViewCOntroller (currently it is placed in the category AVCaptureManagerDelegate) however, I want to know how to call the method in another category.
Finally I found the cause. I didn't declare method signature in the Category, just only the method implementation in the Category implementation block.I declared the method and it works.