iOS Login facebook SDK
First go to Developers facebook in SDKs title iOS turn left. 'download the sdk' and let's start! - Xcode Create Project - Add SDK facebook to project 'FacebookSDK.framework' - new file objective-c file name 'FacebookLogin' subclass of UIViewController and allow also create XIB file in project we have file FacebookLogin.h , FacebookLogin.m , FacebookLogin.xib , AppDelegate.h , AppDelegate.m - start FacebookLogin.h file following code this > #import <FacebookSDK/FacebookSDK.h> - in FacebookLogin.m file #import "FacebookLogin.h" #import <FacebookSDK/FacebookSDK.h> @interface FacebookLogin () < FBLoginViewDelegate > @property ( strong , nonatomic ) IBOutlet FBProfilePictureView *profilePic; @property ( nonatomic , strong ) IBOutlet UILabel *idLabel; @property ( nonatomic , strong ) IBOutlet UILabel *firstnameLabel; @property ( nonatomic , strong ) IBOutlet UILabel *birthDayLabel;...