As I developed the framework which is having both swift and objective c files.When I accessing the swift class in swift project it is working fine but when I tried to access the objective c class in swift i can't able to access and I also bridged the objective c file in swift project.can anyone help me to solve this above problem.
//swift project
import ObjCSwiftFramework
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
let callingswiftfile = SwiftFile() //calling the swift file
let callingobjectivecfile = ObjectiveCFile()//**Use of unresolved identifier 'ObjectiveCFile'**
}
}
//Bridge file
#ifndef ObjCSwift_project_Bridging_Header_h
#define ObjCSwift_project_Bridging_Header_h
#import "ObjCSwiftFramework/ObjCSwiftFramework.h"
#endif