Reputation: 2836
Following the "quick" start guide here https://parse.com/apps/quickstart#parse_data/mobile/ios/swift/new
I've read and tried several suggestions from related SO questions, like here Connect Objective C framework to Swift iOS 8 app (Parse framework) and here No Such Module 'Parse', and here XCode keeps forgetting imported Frameworks
Maybe I've done something wrong with the bridging headers..
The project builds but it still shows the no module error in ViewController.swift and Parse is not autocompleting.
Upvotes: 2
Views: 987
Reputation: 352
Simply add a new Objective-C File to your project then Xcode will prompt whether you want to configure your project with a bridging header , so press "Create Bridging Header" button so that your project will configure combination of Swift and Objective-C code.
Now Make sure that you have import Parse framework in your ViewController file and then build your application and run it.
If still not working then just closed your project and reopen it and run again.
Upvotes: 0
Reputation: 11
try this :
Go to your Project -> Build Settings > Search Paths > Framework Search Paths
and Add this $(PROJECT_DIR)
Now copy the Parse Frameworks to your Project Folder!
its will Works! :) enter image description here
Upvotes: 1