Reputation: 93
I am trying to include a Swift file in Xcode with a project set up with Objective-C. I included a Bridging Header with the Objective-C file that the Swift file contains, but it still shows an error 'Use of unresolved identifier'.
Background of my project is that I forked the project FSCalendar from GitHub to make changes for how I would personally be using it via Cocoapods. I made my modifications in the FSCalendarSwiftExample project folder (the blue paper icon) that the pull came with as I was writing in mainly in Swift, but when I push my changes the classes that I made in FSCalendarSwiftExample weren't accessible, so I am trying to put it in the FSCalendar project folder, but I am faced with the issue above.
Upvotes: 0
Views: 76
Reputation: 178
You can check if you did add the files by the following steps: targets -> Build Phases -> Compile Sources -> +
Upvotes: 0