What is the difference between #import and #include in Objective-C?

前端 未结 10 1515
小蘑菇
小蘑菇 2020-11-22 10:12

What are the differences between #import and #include in Objective-C and are there times where you should use one over the other? Is one deprecated?

I was reading th

10条回答
  •  旧时难觅i
    2020-11-22 11:05

    In may case I had a global variable in one of my .h files that was causing the problem, and I solved it by adding extern in front of it.

提交回复
热议问题