user3753098
user3753098

Reputation: 216

Use of unresolved identifier 'Parse'

I'm following the following this tutorial trying to set up a basic Swift app with Parse. After following all the steps in part one I get the following error in AppDelegate.swift and running the application fails:

enter image description here

I've used my real application ID and client key, and not "xxxyyyyzzzz" and "aaaabbbbcccc".

I've linked all the frameworks as instructed:

enter image description here

I've also added a bridging header file with the appropriate name:

enter image description here

Does anyone know why I get this error?

Thanks!

Upvotes: 0

Views: 926

Answers (1)

Freejack
Freejack

Reputation: 44

Add import Parse after your import UIKit

Upvotes: 3

Related Questions