Is it possible to import a folder/group in stead of importing file per file in the .m ?
Example file per file:
#import "FirstViewController.h"
#import "SecondViewController.h"
#import "ThirdViewController.h"
So it is possible to make it like that (folder contains first-second and thirdviewcontroller) :
#import "Folder"
Is it possible ?
Cause it’s very annoying to import file per file when you have a lot of files
Nope, but you can import your files in the precompiled header, so you import them just once, and they will be available globally…
EDIT
Imagine your project’s name is MyApp.
You got a precompiled header filed named
MyApp-Prefix.pchThis particular header file will be automatically imported in all your files, so you can add here the
#importdirectives you need, so you don’t have to write them on all your files.