没有这样的模块Parse

时间:2016-10-13 21:52:52

标签: swift xcode

import UIKit
import Parse

class RegisterPageViewController: UIViewController {

   let myUser: PFUser = PFUser();

        myUser.username = userEmail
        myUser.password = userPassword
        myUser.email = userEmail


        myUser.signUpInBackgroundWithBlock {
            (success:Bool!, error:NSError!) -> Void in

            println("User successfully registered")

如何修复Parse上的“无此模块”问题?

2 个答案:

答案 0 :(得分:1)

因为我们已经能够在GitHub聊天中解决这个问题。您忘记安装Parse Framework.

您需要使用pod 'Parse'安装它,或者将Framework拖放到项目中并使用桥接标题。

答案 1 :(得分:0)

此外,如果您有一个仅限Swift的应用程序,Parse的SKD在Objective C中,因此您必须使您的应用程序成为swift / Objective C应用程序,并将Parse添加到您的桥接标题

Here's a good post on how to add a bridging header