Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialBen Chamla
4,518 PointsHi, I wanted to know how come we don't need to "import" the "FactBook.swift" at the top of the "ViewController". thanks
How come we don't need to import a file to use what's in it ?
1 Answer
Stephen Whitfield
16,771 PointsBecause the Swift compiler does it for you. The only time you'll need to import anything into Swift is when you're using a bridging-header to import old objective-c APIs/frameworks. Other than that, you're good to go!
Ben Chamla
4,518 PointsBen Chamla
4,518 PointsThank you !!