What is the difference between #include and #import?
Ask by Elena Glibart
Updated 18 Sep 2020
#import ensures that a file is only included once
#import preprocessor automatically check the headers that have been included and ignores if a header is already imported more than once.
#include allow you to include the same file many times.