[View]  [Edit]  [Lock]  [References]  [Attachments]  [History]  [Home]  [Changes]  [Search]  [Help] 

app[coco8fb-ios] 01 Login example



Let the user LogIn with facebook account.
"Push a view controller with a facebook Login button"
| controller button |
controller := UIViewController instance.
button := FBSDKLoginButton instance.
button
	center: controller view center;
	readPermissions: JS@ #(
		public_profile
		email
		user_friends
	).
controller view addSubview: button.
controller openOnTop.