#import in objective C: Am I doing this wrong?

前端 未结 3 1923
孤独总比滥情好
孤独总比滥情好 2021-01-21 07:48

Sorry, couldn\'t find a more appropriate title.

In My code I have two classes which should know of each others existence. So I use an instance variable which points to t

3条回答
  •  清歌不尽
    2021-01-21 08:18

    You cannot have circular imports. You need to break them up, or introduce some forward declarations.

提交回复
热议问题