The project I work currently has Both Objective-C and Swift linked with the bridging header and everything works fine. but in one case where this particular viewController.h which is in Obj-c has swift imported already. when I try to access this viewController.h in another Swift controller it says '<#project-name#>-swift.h' file not found
Guide me how can I access this objC file in swift :(
Edited: detailed!!
I have a viewController.h file where I have implemented swift models by importing '<#project-name#>-swift.h'
but when I try to access this viewController.h from SecondViewController.swift, I have to add this #import "viewController.h"
to the bridging header of my project. If I do so I am getting this error
'<#project-name#>-swift.h' file not found