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
IF you #include a file two times in .h files than compiler will give error. But if you #import a file more than once compiler will ignore it.