.h file not found

前端 未结 13 2354
清酒与你
清酒与你 2020-12-07 23:56

I\'m working on an app in xcode 4 and everything was going great, then something odd just started happening. Every time I make a new class (any type of class, ViewController

13条回答
  •  鱼传尺愫
    2020-12-08 00:40

    this kind of problem occurs due to cyclic import. Say if you have a header file A.h and you are importing B.h and in B.h if you are again importing A.h then this will show the error A.h file not found...

提交回复
热议问题