when i press the login button the users name, surname and profile picture is displayed. when i quit the app and then relaunch it it retains the information that the user is logged in but it no longer displays the users info. and i have to log out and then re-login for the user info to be displayed again. how do i fix that? here is my code:
- (IBAction)login:(id)sender{
AppDelegate* appDelegate = (AppDelegate*)[[UIApplication sharedApplication] delegate];
// The user has initiated a login, so call the openSession method
// and show the login UX if necessary.
if (FBSession.activeSession.isOpen) {
// NSMutableDictionary *param =[NSMutableDictionary dictionaryWithObjectsAndKeys:@"picture",@"fields", nil];
FBRequest *me = [FBRequest requestForMe];
[me startWithCompletionHandler: ^(FBRequestConnection *connection,
NSDictionary<FBGraphUser> *my,
NSError *error) {
self.label.textColor =[UIColor whiteColor];
self.label.text = my.first_name;
self.label2.textColor =[UIColor whiteColor];
self.label2.text=my.last_name;
//profile picture
NSString *fbuid= my.id;
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"https:/graph.facebook.com/%@/picture?type=large", fbuid]];
NSData *data = [NSData dataWithContentsOfURL:url];
imageProfile.image = [UIImage imageWithData:data];
}];
[appDelegate closeSession];
} else {
// The user has initiated a login, so call the openSession method
// and show the login UX if necessary.
[appDelegate openSessionWithAllowLoginUI:YES];
}
}