Sara Canducci
Sara Canducci

Reputation: 6291

How to add a Bridging Header in XCode 6 (final release)

I'm having some problems adding a bridging header file to my project. It has been always generated automatically by XCode when importing my Obj-C libraries...but now, with the final release of XCode 6 this doesn't happen anymore...do you know why?

Thank you so much Cheers! :)

Upvotes: 0

Views: 586

Answers (1)

Vatsal
Vatsal

Reputation: 18181

Here's what you have to do:

  • Select your project in the project navigator.
  • Navigate to Build Settings.
  • Search for Objective-C Bridging Header.
  • Set the value of Objective-C Bridging Header to the path of your bridging header file.
  • Clean and build your project.

That's all folks!

Upvotes: 3

Related Questions