-1

I have 2 class - Cars and Passenger. In Car class I have method(Cars.h):

-(Passenger *)carWithLowestPassengers;

but class Car doesn`t see class Passenger without

#import Passenger.h

How I can solve the problem without using import?

Sahar Max
  • 25
  • 1
  • 4

1 Answers1

0

Solving is add @class Passenger in Car.h before @interface

Sahar Max
  • 25
  • 1
  • 4