Is it possible for Xcode to auto import the frameworks and class headers automatically?
What happens is that every time I build, I will encounter errors due to missing import. I know how to fix, but I felt Xcode can be more intelligent by perhaps giving me an option to "Auto fix imports".
You can import a class header into all files automatically by adding it in the .pch file. You will still need to add the frameworks manually though.