10

So I created this method:

- (void)addToViewController:(SecViewController *)controller 
      didFinishEnteringItem:(NSString *)item;` <br>

And Xcode keeps giving me Expected a type error at SecViewController *. What does that mean? SecViewController is not a type?

Alex Cio
  • 6,014
  • 5
  • 44
  • 74

1 Answers1

22

You have to declare SecViewController:

@class SecViewController;

... at the top of your header.

Note: Don't just #import all used headers. This just worsens your header dependencies.

Nikolai Ruhe
  • 81,520
  • 17
  • 180
  • 200