Hide Shidara
Hide Shidara

Reputation: 77

Completely unrelated error using coredata

bridging header '/Users/bobby/Desktop/Project/Project_Name/Project_Name-Bridging-Header.h' does not exist

I am getting this error, trying to use core data to save data in my iphone app. It Shows up even when I put in a bridging header, though I shouldn't need to because it's on swift.

Upvotes: 1

Views: 138

Answers (2)

fujianjin6471
fujianjin6471

Reputation: 5248

  1. Delete any bridging header in Navigator
  2. Delete any path in targets -> Build Settings -> Swift Compiler - Code Generation -> Objective C Bridging Header, it should look like this:

enter image description here

Upvotes: 0

Dharmesh Kheni
Dharmesh Kheni

Reputation: 71854

Try this:

Go to targets -> Build Settings -> Swift Compiler - Code Generation -> Objective C Bridging Header and Double click on it and do this:

enter image description here

Hope this will help you.

Upvotes: 3

Related Questions