Skip to content

Instantly share code, notes, and snippets.

@rjjohnpatrickcruz
Forked from iaserrat/FBLogin.swift
Last active August 29, 2015 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rjjohnpatrickcruz/cbe39c4568a3b748a0d8 to your computer and use it in GitHub Desktop.
Save rjjohnpatrickcruz/cbe39c4568a3b748a0d8 to your computer and use it in GitHub Desktop.
// YourProject-Bridging-Header.h
#import <FacebookSDK/FacebookSDK.h>
// AppDelegate.swift
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
.
.
.
func application(application: UIApplication, openURL url: NSURL, sourceApplication: NSString?, annotation: AnyObject) -> Bool {
var wasHandled:Bool = FBAppCall.handleOpenURL(url, sourceApplication: sourceApplication)
return wasHandled
}
}
// ViewController.swift
import Foundation
import UIKit
class LoginViewController: UIViewController, FBLoginViewDelegate {
var fbl: FBLoginView = FBLoginView()
@IBOutlet var loginView : FBLoginView
@IBOutlet var profilePictureView : FBProfilePictureView
@IBOutlet var userNameTxt : UILabel
@IBOutlet var logStatusTxt : UILabel
override func viewDidLoad() {
super.viewDidLoad()
fbl.delegate = self
loginView.readPermissions = ["public_profile", "email", "user_friends"]
// Do any additional setup after loading the view, typically from a nib.
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func loginViewShowingLoggedInUser(loginView: FBLoginView) {
logStatusTxt.text = "You are logged in!"
}
func loginViewFetchedUserInfo(loginView: FBLoginView?, user: FBGraphUser) {
profilePictureView.profileID = user.objectID
userNameTxt.text = user.first_name + " " + user.last_name
}
func loginViewShowingLoggedOutUser(loginView: FBLoginView?) {
profilePictureView.profileID = nil
userNameTxt.text = ""
logStatusTxt.text = "You are logged out!"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment