Is there anything in swift that works like frameworks list in Xcode while using Obj-C? I want to know what modules I can use by default. e.g.. CoreData, CoreImage, etc.
Asked
Active
Viewed 2,173 times
1 Answers
0
Method - 1
To use any Objective-C Framework in Swift, you need to create 'Bridging-header.h" file and import your framework there to use anywhere in your swift project.
To add Bridging header in Swift Project
Method - 2
You can direct import any framework.
E.g. import CoreData
The main problem is that Xcode doesn't provide "AutoComplete" option for "import" statement so that's the problem as of now.
Reference: Import Framework in Swift Project, Xcode
Edited:
Most Popular List of Swift Modules which you can get from Xcode:

Community
- 1
- 1

Sohil R. Memon
- 9,404
- 1
- 31
- 57
-
Thank you for your answer Sohil. But is there any way to disclose every module other than modules I do know. Or where on earth are those modules placed? – Obj-Steve Aug 07 '15 at 07:40
-
@Obj-Steve Yes, there is! Please check the edited answer – Sohil R. Memon Aug 07 '15 at 07:44
-
1Yeah, that's plenty of them, if not all of them. Thanks a lot Sohil. :D – Obj-Steve Aug 07 '15 at 07:56