Facebook在Swift中使用Parse登录

时间:2014-09-27 02:19:58

标签: ios facebook parse-platform facebook-login

我试图用Parse创建Facebook登录。请查看我的应用代表的代码:

    import UIKit

    @UIApplicationMain
    class AppDelegate: UIResponder, UIApplicationDelegate {

    var window: UIWindow?

    func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool  {
    //  verride point for customiztion after application launch.
        PFFacebookUtils.initializeFacebook()
    Parse.setApplicationId("REMOVED", clientKey:"REMOVED")

    return true
}
func application(application: UIApplication,
    openURL url: NSURL,
    sourceApplication: String,
    annotation: AnyObject?) -> Bool {
        return FBAppCall.handleOpenURL(url, sourceApplication:sourceApplication,
            withSession:PFFacebookUtils.session())
}


func applicationWillResignActive(application: UIApplication) {
    // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
    // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
}

func applicationDidEnterBackground(application: UIApplication) {
    // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.
    // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
}

func applicationWillEnterForeground(application: UIApplication) {
    // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.
}

func applicationDidBecomeActive(application: UIApplication) {
    FBAppCall.handleDidBecomeActiveWithSession(PFFacebookUtils.session())

    // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.
}

func applicationWillTerminate(application: UIApplication) {

    // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.
}

 }

这是我的桥接标题(我认为一切正常):

    #import <Parse/Parse.h>
    #import "BMParseManager.h"
    #import <FacebookSDK/FacebookSDK.h>

    #import <ParseFacebookUtils/PFFacebookUtils.h>

我现在处于编码视图控制器的阶段。

我在Objective-C中在线发现了这个例子,所以我猜测我是否可以将其转换为swift它能正常工作吗? (this page的登录部分。)

我收到PFFacebookUtils的错误:&#34;预期声明&#34;。这是在我的视图控制器中:

    import UIKit

    class FBLoginViewController: UIViewController {    

PFFacebookUtils.logInWithPermissions(permissions, {
(user: PFUser!, error: NSError!) -> Void in
if user == nil {
NSLog("Uh oh. The user cancelled the Facebook login.")
} else if user.isNew {
NSLog("User signed up and logged in through Facebook!")
} else {
NSLog("User logged in through Facebook!")
}
})

桥接头中的导入是否不够?如何让视图控制器识别我将其导入到桥接头中 - 或者我应该在别处做些什么?

2 个答案:

答案 0 :(得分:2)

似乎您需要先定义权限。

var permissions = ["public_profile"]


   PFFacebookUtils.logInWithPermissions(permissions, {
        (user: PFUser!, error: NSError!) -> Void in
        if user == nil {
            NSLog("Uh oh. The user cancelled the Facebook login.")

如果你正确导入了你的标题,当你调用parse / facebook函数时,它应该在Xcode中没有显示错误。

答案 1 :(得分:0)

您收到错误是因为编译器需要声明,即变量声明或方法声明。

看起来你在类中直接有PFFacebookUtils.loginWithPermission(...)代码。你需要将它放在一个方法中。例如:

import UIKit

class FBLoginViewController: UIViewController {

    func login() {
        //
        PFFacebookUtils.logInWithPermissions(permissions, {
            //
        }
    }
})
相关问题