natecraft1
natecraft1

Reputation: 2836

No such module 'Parse' following Parse iOS Swift Quickstart guide

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

Answers (2)

Ashvini
Ashvini

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

Tony Ricardo
Tony Ricardo

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

Related Questions