I have created two header files names commonclass.h and header.h in my Swift project. How to add those two file paths in the bridging header? I can add only one path to it and I need to add the second file path as well to bridging header.
Asked
Active
Viewed 1,039 times
0
-
include the second header file from the bridging header – Scriptable Jun 05 '17 at 14:14
1 Answers
1
You don't have to add both header paths but only one and that is Bridging Header file only.
You can add bridging header to your project as this SO answer and then #import
whatever header files you want to access from swift into this bridging header.

D4ttatraya
- 3,344
- 1
- 28
- 50