Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am creating an app which wants to list the facebook friends. For that i did the following.

- (void)viewDidLoad
{        
    arrayFriends=[[NSMutableArray alloc]init];
    [super viewDidLoad];
    if (!FBSession.activeSession.isOpen) {
        // if the session is closed, then we open it here, and establish a handler for state changes
        [FBSession.activeSession openWithCompletionHandler:^(FBSession *session,
                                                             FBSessionState state,
                                                             NSError *error) {
            switch (state) {
                case FBSessionStateClosedLoginFailed:
                {
                    UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Error"
                                                                        message:error.localizedDescription
                                                                       delegate:nil
                                                              cancelButtonTitle:@"OK"
                                                              otherButtonTitles:nil];
                    [alertView show];
                }
                    break;
                default:
                    break;
            }
        }];
    }       
}

-(void)viewWillAppear:(BOOL)animated
{
    if (self.friendPickerController == nil) {
        // Create friend picker, and get data loaded into it.
        self.friendPickerController = [[FBFriendPickerViewController alloc] init];
        self.friendPickerController.title = @"Pick Friends";
        self.friendPickerController.delegate = self;
    }

    [self.friendPickerController loadData];
    [self.friendPickerController clearSelection];
    [self.friendPickerController.view setFrame:CGRectMake(0, 77, 320, 383)];
    [self.view addSubview:self.friendPickerController.view];
    // iOS 5.0+ apps should use [UIViewController presentViewController:animated:completion:]

}
share|improve this question

1 Answer

up vote 3 down vote accepted

viewcontroller with list of friends you can get friend list like this image for that you need to add below code in your viewWillAppear:method

 if (self.friendPickerController == nil) {
    // Create friend picker, and get data loaded into it.
    self.friendPickerController = [[FBFriendPickerViewController alloc] init];
    self.friendPickerController.title = @"Pick Friends";
    self.friendPickerController.delegate = self;
}

[self.friendPickerController loadData];
[self.friendPickerController clearSelection];

[self presentModalViewController:self.friendPickerController animated:YES];

for done and cancel button actions we should call below methods respectively,

- (void)facebookViewControllerDoneWasPressed:(id)sender{
  //code goes here
}
- (void)facebookViewControllerCancelWasPressed:(id)sender{
 [self dismissModalViewControllerAnimated:YES];
}
share|improve this answer
Can i able to change the background color of this ViewController ? I tried the following code but the background didn't changed.... [self.friendPickerController.tableView setBackgroundColor:[UIColor clearColor]]; [self.friendPickerController.tableView setBackgroundView:nil]; [self.friendPickerController.view setBackgroundColor:[UIColor clearColor]]; – Vishnu Kumar. S Oct 5 '12 at 21:30
1  
@murali Can i fetch username of the selected friends? – EXC_BAD_ACCESS Dec 20 '12 at 4:37
this modal view is presented but the table view is still not getting populated with the contact list. any suggestions how to fix this?? – Nishant Jan 6 at 18:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.